Update .gitlab-ci.yml file
This commit is contained in:
parent
3e8606e644
commit
929b65c156
1 changed files with 4 additions and 2 deletions
|
|
@ -13,8 +13,10 @@ build_job:
|
||||||
stage: build
|
stage: build
|
||||||
image: gcc:latest
|
image: gcc:latest
|
||||||
script:
|
script:
|
||||||
- apt-get update -y
|
- apt-get update -y
|
||||||
- apt-get install -y cmake libboost-all-dev
|
- apt-get install -y cmake
|
||||||
|
- apt clean
|
||||||
|
- apt-get install -y libboost-all-dev
|
||||||
- mkdir -p ${BUILD_DIR}
|
- mkdir -p ${BUILD_DIR}
|
||||||
- cd ${BUILD_DIR}
|
- cd ${BUILD_DIR}
|
||||||
- cmake .. ${CMAKE_OPTIONS}
|
- cmake .. ${CMAKE_OPTIONS}
|
||||||
|
|
|
||||||
Reference in a new issue