Added cd build into each build

This commit is contained in:
rilesdun 2021-12-23 15:12:46 -04:00
parent b603a5c4ed
commit 3f449c53bc

View file

@ -24,6 +24,7 @@ build:
stage: build
needs: [code-checkout]
script:
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make -j$(nproc)
artifacts:
@ -37,6 +38,7 @@ build-testnet:
stage: build
needs: [code-checkout]
script:
- cd build
- cmake -DBOOST_ROOT="$BOOST_ROOT" -DCMAKE_BUILD_TYPE=Release -DBUILD_PEERPLAYS_TESTNET=1 ..
- make -j$(nproc)
artifacts: