clear-urls-browser-extension/.gitlab-ci.yml

49 lines
1.0 KiB
YAML
Raw Normal View History

2019-02-12 23:33:40 +00:00
image: debian:latest
before_script:
2019-02-12 23:38:39 +00:00
- export DEBIAN_FRONTEND= noninteractive
- apt-get update -y
2019-04-01 22:16:32 +00:00
- apt-get install -y zip unzip jq
2019-02-12 23:30:36 +00:00
stages:
2019-02-12 23:30:36 +00:00
- build
2019-09-24 16:16:54 +00:00
- deploy
2019-02-12 23:30:36 +00:00
hash rules:
stage: build
script:
- sha256sum data/data.min.json | awk '{print $1}' > rules.min.hash
artifacts:
paths:
- rules.min.hash
build firefox:
2019-02-12 23:30:36 +00:00
stage: build
script:
2019-02-12 23:56:48 +00:00
- zip ClearUrls_firefox -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
2019-02-12 23:30:36 +00:00
only:
- master
artifacts:
paths:
2019-02-12 23:56:48 +00:00
- ClearUrls_firefox.zip
2019-02-12 23:30:36 +00:00
build chrome:
2019-02-12 23:30:36 +00:00
stage: build
script:
2019-04-01 22:16:32 +00:00
- jq 'del(.applications) | .description=""' manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
- zip ClearUrls_chrome -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
2019-02-12 23:30:36 +00:00
only:
- master
artifacts:
paths:
- ClearUrls_chrome.zip
2019-09-24 16:16:54 +00:00
pages:
stage: deploy
artifacts:
paths:
- public