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

cfg: CI/CD setup

parent f24a82c6
No related branches found
No related tags found
No related merge requests found
prebuild:
stage: build
script:
- gcc --version
- g++ --version
tags:
- rmrf
- rmrfcode
build:bsd:
stage: build
dependencies:
- prebuild
script:
- gmake
artifacts:
paths:
- bin
tags:
- rmrf
- rmrfcode
- freebsd
build:deb:
stage: build
dependencies:
- prebuild
script:
- make
- dpkg-buildpackage -b -us -uc
artifacts:
paths:
- bin
- ../rmrf*.deb
- ../rmrf*.ddeb
- ../rmrf*.changes
- ../rmrf*.buildinfo
tags:
- rmrf
- rmrfcode
- debian
test:bsd:
stage: test
dependencies:
- build:bsd
script:
- echo Successfully tested.
test:deb:
stage: test
dependencies:
- build:deb
script:
- echo Successfully tested.
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