Draft: Enable CI/CD build for both mainnet and testnet versions #631

Closed
serkixenos wants to merge 18 commits from Feature-Enable-parallel-build-testnet-mainnet-cmake into develop
Showing only changes of commit c888c49276 - Show all commits

View file

@ -9,6 +9,27 @@ stages:
- build
- test
build-testnet:
stage: build
needs: []
script:
- rm -rf .git/modules/docs .git/modules/libraries/fc ./docs ./libraries/fc
- git submodule sync
- git submodule update --init --recursive
- rm -rf build
- mkdir build
- cd build
- cmake -DBOOST_ROOT="$BOOST_ROOT" -DCMAKE_BUILD_TYPE=Release -DBUILD_PEERPLAYS_TESTNET=1
- make -j$(nproc)
artifacts:
untracked: true
paths:
- build/libraries/
- build/programs/
- build/tests/
tags:
- builder
build:
stage: build
script:
@ -29,29 +50,6 @@ build:
tags:
- builder
build-testnet:
stage: build
needs: []
script:
- rm -rf .git/modules/docs .git/modules/libraries/fc ./docs ./libraries/fc
- git submodule sync
- git submodule update --init --recursive
- rm -rf build-testnet
- mkdir build-testnet
- cd build-testnet
- cmake -DBOOST_ROOT="$BOOST_ROOT" -DCMAKE_BUILD_TYPE=Release -DBUILD_PEERPLAYS_TESTNET=1
- make -j$(nproc)
artifacts:
untracked: true
paths:
- build-testnet/libraries/
- build-testnet/programs/
- build-testnet/tests/
tags:
- builder
dockerize:
stage: build
variables: