linux/.gitlab-ci.yml
2019-06-12 15:44:32 -05:00

17 lines
291 B
YAML

image: ubuntu:18.04
before_script:
- apt update
- apt install python python3 wget -y
stages:
- Build
Build LibreWolf:
stage: Build
script:
- cd librewolf_browser
- ./build.sh
artifacts:
paths:
- "librewolf_browser/librewolf*.tar.bz2"