Skip to content

Commit

Permalink
Add ubuntu disco and eoan to CI build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
salcock committed Nov 20, 2019
1 parent 5a6a208 commit cc4247f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,34 @@ build-ubuntu-bionic:
only:
- tags

build-ubuntu-disco:
stage: build
image: ubuntu:disco
script:
- ./gitlab-build.sh
- mkdir -p built-packages/disco/
- mv ../*.deb built-packages/disco/
artifacts:
paths:
- built-packages/*
expire_in: 1 day
only:
- tags

build-ubuntu-eoan:
stage: build
image: ubuntu:eoan
script:
- ./gitlab-build.sh
- mkdir -p built-packages/eoan/
- mv ../*.deb built-packages/eoan/
artifacts:
paths:
- built-packages/*
expire_in: 1 day
only:
- tags

upload-packages:
stage: upload
image: ubuntu:bionic
Expand Down

0 comments on commit cc4247f

Please sign in to comment.