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 14ea547a46 - Show all commits

View file

@ -19,8 +19,7 @@ code-checkout:
- mkdir build
build:
stage: build
needs: [code-checkout]
stage: build
script:
- mkdir build/mainnet
- cd build/mainnet
@ -35,7 +34,6 @@ build:
build-testnet:
stage: build
needs: [code-checkout]
script:
- mkdir build/testnet
- cd build/testnet
@ -49,14 +47,6 @@ build-testnet:
- build/tests/
tags:
- builder
artifacts:
untracked: true
paths:
- build/libraries/
- build/programs/
- build/tests/
tags:
- builder
dockerize:
stage: build