foxgirl-linux/.gitlab-ci.yml

31 lines
816 B
YAML
Raw Normal View History

2019-06-12 22:44:32 +02:00
image: ubuntu:18.04
stages:
2019-07-17 20:49:02 +02:00
- Linux-Build
2019-06-17 07:19:55 +02:00
- Release
2019-06-12 22:44:32 +02:00
Build Linux Packages:
2019-07-17 20:49:02 +02:00
stage: Linux-Build
2019-06-12 22:44:32 +02:00
script:
2019-07-01 10:55:19 +02:00
- cd browser/linux
2019-07-24 05:53:46 +02:00
- wget http://security.ubuntu.com/ubuntu/pool/main/b/bubblewrap/bubblewrap_0.2.1-1ubuntu0.1_amd64.deb
- dpkg -i ./bubblewrap_0.2.1-1ubuntu0.1_amd64.deb
- bwrap --dev-bind / / bash
2019-06-12 22:44:32 +02:00
- ./build.sh
artifacts:
2019-07-24 05:53:46 +02:00
name: "Librewolf-$CI_COMMIT_REF_NAME-Linux-Packages"
2019-06-12 22:44:32 +02:00
paths:
2019-07-23 19:38:46 +02:00
- "LibreWolf.tar.bz2"
- "LibreWolf.AppImage"
- "librewolf-flatpak-repo"
- "LibreWolf.flatpak"
2019-06-17 07:19:55 +02:00
Release to Gitlab:
stage: Release
image: python3
script:
- pip3 install gitlab-release
2019-07-23 19:38:46 +02:00
- gitlab-release LibreWolf.tar.bz2 LibreWolf.AppImage librewolf-flatpak-repo LibreWolf.flatpak
2019-06-17 07:19:55 +02:00
only:
- tags