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: ...@@ -4,7 +4,7 @@ stages:
- testing - testing
- deploy - deploy
prebuild: prebuild:bsd:
stage: prebuild stage: prebuild
script: script:
- gcc --version - gcc --version
...@@ -12,11 +12,22 @@ prebuild: ...@@ -12,11 +12,22 @@ prebuild:
tags: tags:
- rmrf - rmrf
- rmrfcode - rmrfcode
- freebsd
prebuild:deb:
stage: prebuild
script:
- gcc --version
- g++ --version
tags:
- rmrf
- rmrfcode
- debian
build:bsd: build:bsd:
stage: build stage: build
dependencies: dependencies:
- prebuild - prebuild:bsd
script: script:
- gmake - gmake
artifacts: artifacts:
...@@ -30,7 +41,7 @@ build:bsd: ...@@ -30,7 +41,7 @@ build:bsd:
build:deb: build:deb:
stage: build stage: build
dependencies: dependencies:
- prebuild - prebuild:deb
script: script:
- make - make
- dpkg-buildpackage -b -us -uc - 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