LibreWeb-Browser/.gitlab-ci.yml

34 lines
605 B
YAML
Raw Normal View History

2021-01-21 08:51:35 -08:00
image: danger89/gtk3-docker-cmake-ninja:2.1
2020-11-14 19:51:08 -08:00
2020-12-10 16:05:19 -08:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2020-11-14 19:51:08 -08:00
static_code_analysis:
script: ./check.sh
2020-11-18 19:04:52 -08:00
2021-02-17 08:59:53 -08:00
doxygen:
#stage: analysis
before_script:
- mkdir -p build/docs
script:
- doxygen docs/Doxyfile
artifacts:
paths:
- build/docs/html/
2020-11-18 19:04:52 -08:00
build:
script: ./scripts/build_prod.sh
artifacts:
2021-02-17 13:02:57 -08:00
name: "Packages"
expire_in: 2 weeks
2020-11-18 19:04:52 -08:00
paths:
2020-11-20 15:45:33 -08:00
- build_prod/browser-*.deb
- build_prod/browser-*.rpm
- build_prod/browser-*.tar.gz
2020-11-18 19:04:52 -08:00
cache:
key: "$CI_PIPELINE_ID"
paths:
- build_prod/bin
policy: push