nextcloud-app-radio/.gitlab-ci.yml

43 lines
1.2 KiB
YAML
Raw Normal View History

2020-10-13 09:31:35 +00:00
stages:
- compiling
2020-11-26 10:00:15 +00:00
- packaging
- publishing
2020-10-13 09:31:35 +00:00
2020-11-26 10:34:38 +00:00
image: node:latest
2020-10-13 09:31:35 +00:00
2020-11-27 09:49:38 +00:00
compiling:
2020-10-13 09:31:35 +00:00
stage: compiling
script:
2020-11-27 09:49:38 +00:00
- npm install
2020-11-26 09:59:14 +00:00
- make build-js
2020-11-26 10:18:41 +00:00
cache:
2020-10-13 09:31:35 +00:00
paths:
2020-11-26 10:18:41 +00:00
- node_modules/
2020-10-13 09:31:35 +00:00
2020-11-27 09:49:38 +00:00
packaging:
2020-10-13 09:31:35 +00:00
stage: packaging
script:
2020-11-26 10:34:38 +00:00
- apt update
2020-11-26 10:54:41 +00:00
- DEBIAN_FRONTEND="noninteractive" apt install -y wget sudo
- wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb
2020-11-26 10:18:41 +00:00
- wget https://github.com/ChristophWurst/krankerl/releases/download/v0.12.3/krankerl_0.12.3_amd64.deb
2020-11-26 10:54:41 +00:00
- sudo dpkg -i libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb krankerl_0.12.3_amd64.deb
2020-11-26 10:18:41 +00:00
- krankerl package
2020-10-13 09:31:35 +00:00
artifacts:
paths:
2020-11-26 10:18:41 +00:00
- build/artifacts/radio.tar.gz
2020-10-13 09:31:35 +00:00
2020-11-27 09:49:38 +00:00
publishing:
2020-10-13 09:31:35 +00:00
stage: publishing
2020-11-26 10:18:41 +00:00
image: registry.gitlab.com/gitlab-org/release-cli:latest
2020-11-27 09:59:17 +00:00
needs:
- job: packaging
artifacts: true
rules:
- if: $CI_COMMIT_TAG
2020-10-13 09:31:35 +00:00
script:
2020-11-26 10:18:41 +00:00
- >
release-cli create --name "v$CI_COMMIT_TAG" --description $EXTRA_DESCRIPTION
--tag-name $CI_COMMIT_TAG --ref $CI_COMMIT_SHA
--assets-link '{"name":"matrixregistration-$CI_COMMIT_TAG","url":"https://gitlab.com/olze/matrixregistration/-/jobs/artifacts/$CI_COMMIT_TAG/download?job=production","link_type":"other"}'