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

33 lines
789 B
YAML
Raw Normal View History

2019-02-12 23:33:40 +00:00
image: debian:latest
2019-02-12 23:30:36 +00:00
before_script:
2019-02-12 23:38:39 +00:00
- export DEBIAN_FRONTEND= noninteractive
- apt-get update -y
- apt-get install -y zip unzip
2019-02-12 23:30:36 +00:00
stages:
- build
build firefox:
stage: build
script:
2019-02-12 23:46:14 +00:00
- zip ClearUrls_firefox_$CI_BUILD_ID -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:52:52 +00:00
- ClearUrls_firefox_$CI_BUILD_ID.zip
2019-02-12 23:30:36 +00:00
build chrome:
stage: build
script:
2019-02-12 23:46:14 +00:00
- zip ClearUrls_chrome_$CI_BUILD_ID -r -FS ChromeVersion/clearurls.js browser-polyfill.js ChromeVersion/manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/* ChromeVersion/css/core.css
2019-02-12 23:30:36 +00:00
only:
- master
artifacts:
paths:
2019-02-12 23:52:52 +00:00
- ClearUrls_chrome_$CI_BUILD_ID.zip