foxgirl-linux/.gitlab-ci.yml
2019-07-24 00:09:40 -05:00

30 lines
703 B
YAML

image: ubuntu:18.04
stages:
- Linux-Build
- Release
Build Linux Packages:
stage: Linux-Build
script:
- cd browser/linux
- sysctl -w kernel.unprivileged_userns_clone=1
- bwrap --dev-bind / / bash
- ./build.sh
artifacts:
name: "Librewolf-$CI_COMMIT_REF_NAME-Linux-Packages"
paths:
- "LibreWolf.tar.bz2"
- "LibreWolf.AppImage"
- "librewolf-flatpak-repo"
- "LibreWolf.flatpak"
Release to Gitlab:
stage: Release
image: python3
script:
- pip3 install gitlab-release
- gitlab-release LibreWolf.tar.bz2 LibreWolf.AppImage librewolf-flatpak-repo LibreWolf.flatpak
only:
- tags