clear-urls-browser-extension/.gitlab-ci.yml
2019-03-12 18:25:22 +01:00

42 lines
904 B
YAML

image: debian:latest
before_script:
- export DEBIAN_FRONTEND= noninteractive
- apt-get update -y
- apt-get install -y zip unzip
stages:
- build
hash rules:
stage: build
script:
- sha256sum data/data.min.json | awk 'print $1' > rules.min.hash
artifacts:
paths:
- rules.min.hash
build firefox:
stage: build
script:
- zip ClearUrls_firefox -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
only:
- master
artifacts:
paths:
- ClearUrls_firefox.zip
build chrome:
stage: build
script:
- zip ClearUrls_chrome -r -FS ChromeVersion/clearurls.js browser-polyfill.js ChromeVersion/manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/* ChromeVersion/css/core.css
only:
- master
artifacts:
paths:
- ClearUrls_chrome.zip