Skip to content
Snippets Groups Projects
Verified Commit 70696ebd authored by Benny Baumann's avatar Benny Baumann
Browse files

cfg: Split prebuild stage for both platforms

parent eea8a3b5
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -4,7 +4,7 @@ stages:
- testing
- deploy
prebuild:
prebuild:bsd:
stage: prebuild
script:
- gcc --version
......@@ -12,11 +12,22 @@ prebuild:
tags:
- rmrf
- rmrfcode
- freebsd
prebuild:deb:
stage: prebuild
script:
- gcc --version
- g++ --version
tags:
- rmrf
- rmrfcode
- debian
build:bsd:
stage: build
dependencies:
- prebuild
- prebuild:bsd
script:
- gmake
artifacts:
......@@ -30,7 +41,7 @@ build:bsd:
build:deb:
stage: build
dependencies:
- prebuild
- prebuild:deb
script:
- make
- dpkg-buildpackage -b -us -uc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment