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

59 lines
1.4 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-11-09 00:41:42 +00:00
- apt-get install -y zip unzip jq nodejs
2019-02-12 23:30:36 +00:00
stages:
2019-02-12 23:30:36 +00:00
- build
2019-09-24 16:24:22 +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
2019-11-09 00:40:17 +00:00
- node build_tools/minifyDataJSON.js "..\data\data.min.json" "..\data\data.minify.json"
- sha256sum data/data.minify.json | awk '{print $1}' > rules.minify.hash
artifacts:
paths:
- rules.min.hash
2019-11-09 00:40:17 +00:00
- data.minify.json
- rules.minify.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:
2019-09-24 16:23:06 +00:00
stage: deploy
script:
- mkdir public
- mv GitLabPages/* public/
2019-09-24 16:35:33 +00:00
- cp img/clearurls.svg public/clearurls.svg
2019-09-24 16:23:06 +00:00
artifacts:
paths:
- public
only:
- master