Skip to content

Commit

Permalink
Add CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
bionicman committed Aug 9, 2022
1 parent 939ba38 commit 6dc0dd7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
before_script:
- source /etc/profile

stages:
- build

run-build-dpkg-focal:
stage: build
script:
- mkdir mkdir -p _build/src
- mv blitz-* _build/src/
- mv debian _build/src/
- mv package*.xml _build/src/
- cd _build/src && dpkg-buildpackage -b -rfakeroot -us -uc
only:
- /^debian-.*$/
artifacts:
paths:
- _build/*.deb
- _build/*.ddeb
- _build/*.buildinfo
- _build/*.changes
- _build/*.dsc
- _build/*.xz
tags:
- dpkg
- ubuntu
- focal

0 comments on commit 6dc0dd7

Please sign in to comment.