chore(gitlab-ci): disable (comment-out) previous ci defs
This commit is contained in:
parent
2356ff4b53
commit
93cbea6bd9
622
.gitlab-ci.yml
622
.gitlab-ci.yml
@ -15,12 +15,6 @@ variables:
|
||||
AWS_SHARED_CREDENTIALS_FILE: "/etc/aws/credentials"
|
||||
TRANSFER_METER_FREQUENCY: "2s"
|
||||
|
||||
# Docker
|
||||
ENV_USER: fradrive-env
|
||||
|
||||
# Backend
|
||||
STACK_ROOT: "${CI_PROJECT_DIR}/.stack"
|
||||
|
||||
|
||||
default:
|
||||
image:
|
||||
@ -39,32 +33,32 @@ default:
|
||||
interruptible: true
|
||||
|
||||
|
||||
# TODO: Rethink and reintroduce stages
|
||||
# stages:
|
||||
# - setup
|
||||
# - build
|
||||
# - lint
|
||||
# - test
|
||||
# - container
|
||||
# - prepare release
|
||||
# - release
|
||||
stages:
|
||||
- build images
|
||||
- compile
|
||||
- lint
|
||||
- test
|
||||
- push images
|
||||
- release # TODO
|
||||
|
||||
frontend image:
|
||||
stage: build images
|
||||
script:
|
||||
# TODO: define make target for this
|
||||
- make -- --docker-build-frontend-build FRADRIVE_DOCKERFILE=frontend
|
||||
# TODO: define make target for this?
|
||||
- make -- --docker-build-frontend-build FRADRIVE_SERVICE=frontend
|
||||
- docker image save frontend | gzip > docker/frontend/image.tar.gz
|
||||
artifacts:
|
||||
paths:
|
||||
- docker/frontend/image.tar.gz
|
||||
|
||||
frontend build:
|
||||
stage: compile
|
||||
needs:
|
||||
- job: frontend image
|
||||
artifacts: true
|
||||
script:
|
||||
- zcat docker/frontend/image.tar.gz | docker image load
|
||||
- docker run --rm -it -v ${CI_PROJECT_DIR}:/fradrive --env FRADRIVE_MAKE_TARGET=frontend-build frontend # TODO: define new make target or make current target compatible
|
||||
- &load-frontend-image zcat docker/frontend/image.tar.gz | docker image load
|
||||
- make -- --docker-run-frontend-build FRADRIVE_SERVICE=frontend
|
||||
artifacts:
|
||||
paths:
|
||||
- /fradrive/node_modules
|
||||
@ -77,25 +71,41 @@ frontend build:
|
||||
- /fradrive/.well-known-cache/
|
||||
|
||||
frontend lint:
|
||||
stage: lint
|
||||
needs:
|
||||
- job: frontend image
|
||||
artifacts: true
|
||||
script:
|
||||
- *load-frontend-image
|
||||
- make -- --docker-run-frontend-lint FRADRIVE_SERVICE=frontend
|
||||
cache: *frontend-cache
|
||||
|
||||
frontend test:
|
||||
stage: test
|
||||
needs:
|
||||
- job: frontend image
|
||||
artifacts: true
|
||||
- job: frontend build
|
||||
artifacts: true
|
||||
script:
|
||||
- *load-frontend-image
|
||||
- make -- --docker-run-frontend-test FRADRIVE_SERVICE=frontend
|
||||
|
||||
push image(s):
|
||||
cache: *frontend-cache
|
||||
|
||||
push frontend image:
|
||||
stage: push images
|
||||
needs:
|
||||
- job: frontend image
|
||||
artifacts: true
|
||||
- job: frontend build
|
||||
artifacts: false
|
||||
- job: frontend test
|
||||
artifacts: false
|
||||
script:
|
||||
- docker load ...
|
||||
- docker tag ...
|
||||
- docker push ...
|
||||
- *load-frontend-image
|
||||
# - docker image tag
|
||||
- docker push frontend
|
||||
|
||||
# frontend dependencies:
|
||||
# stage: setup
|
||||
@ -144,304 +154,304 @@ push image(s):
|
||||
# - .stack/
|
||||
# - .stack-work/
|
||||
|
||||
frontend build:
|
||||
stage: build
|
||||
cache:
|
||||
- *frontend-cache
|
||||
script:
|
||||
- make frontend-build
|
||||
needs:
|
||||
- job: frontend dependencies
|
||||
artifacts: true
|
||||
- job: well-known
|
||||
artifacts: true
|
||||
artifacts:
|
||||
paths:
|
||||
- static/
|
||||
- config/webpack.yml
|
||||
|
||||
# TODO: .stack-work cache not working
|
||||
backend build:
|
||||
stage: build
|
||||
cache:
|
||||
- *stack-cache
|
||||
script:
|
||||
- make bin/uniworx
|
||||
# - find .stack-work
|
||||
# - cp $(stack path --dist-dir)/build/hlint/hlint bin/test-hlint
|
||||
# - cp $(stack path --dist-dir)/build/yesod/yesod bin/test-yesod
|
||||
needs:
|
||||
- job: frontend dependencies # transitive
|
||||
artifacts: false
|
||||
- job: well-known
|
||||
artifacts: true
|
||||
- job: backend dependencies
|
||||
artifacts: true
|
||||
- job: frontend build
|
||||
artifacts: true
|
||||
artifacts:
|
||||
paths:
|
||||
- bin/
|
||||
resource_group: ram
|
||||
|
||||
# TODO: part of backend build; probably deprecated
|
||||
# uniworxdb:
|
||||
# frontend build:
|
||||
# stage: build
|
||||
# cache:
|
||||
# - *frontend-cache
|
||||
# script:
|
||||
# - make bin/uniworxdb
|
||||
# - make frontend-build
|
||||
# needs:
|
||||
# # TODO: no frontend needed
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend build # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend dependencies
|
||||
# artifacts: true
|
||||
# - job: well-known
|
||||
# artifacts: true
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - bin/uniworxdb
|
||||
# - static/
|
||||
# - config/webpack.yml
|
||||
|
||||
# TODO: part of backend build; probably deprecated
|
||||
# TODO: rewrite
|
||||
# uniworx:exe:uniworxload:
|
||||
# # TODO: .stack-work cache not working
|
||||
# backend build:
|
||||
# stage: build
|
||||
# cache:
|
||||
# - *stack-cache
|
||||
# script:
|
||||
# - xzcat uniworx:lib:uniworx.nar.xz | nix-store --import
|
||||
# - nix -L build -o result ".#uniworx:exe:uniworxload"
|
||||
# - nix-store --export $(nix-store -qR result) | xz -T0 -2 > uniworx:exe:uniworxload.nar.xz
|
||||
# - make bin/uniworx
|
||||
# # - find .stack-work
|
||||
# # - cp $(stack path --dist-dir)/build/hlint/hlint bin/test-hlint
|
||||
# # - cp $(stack path --dist-dir)/build/yesod/yesod bin/test-yesod
|
||||
# needs:
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: well-known
|
||||
# artifacts: true
|
||||
# - job: backend dependencies
|
||||
# artifacts: true
|
||||
# - job: frontend build
|
||||
# artifacts: true
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - bin/
|
||||
# resource_group: ram
|
||||
|
||||
# # TODO: part of backend build; probably deprecated
|
||||
# # uniworxdb:
|
||||
# # stage: build
|
||||
# # script:
|
||||
# # - make bin/uniworxdb
|
||||
# # needs:
|
||||
# # # TODO: no frontend needed
|
||||
# # - job: frontend dependencies # transitive
|
||||
# # artifacts: false
|
||||
# # - job: frontend build # transitive
|
||||
# # artifacts: false
|
||||
# # artifacts:
|
||||
# # paths:
|
||||
# # - bin/uniworxdb
|
||||
|
||||
# # TODO: part of backend build; probably deprecated
|
||||
# # TODO: rewrite
|
||||
# # uniworx:exe:uniworxload:
|
||||
# # stage: build
|
||||
# # script:
|
||||
# # - xzcat uniworx:lib:uniworx.nar.xz | nix-store --import
|
||||
# # - nix -L build -o result ".#uniworx:exe:uniworxload"
|
||||
# # - nix-store --export $(nix-store -qR result) | xz -T0 -2 > uniworx:exe:uniworxload.nar.xz
|
||||
# # needs:
|
||||
# # - job: frontend dependencies # transitive
|
||||
# # artifacts: false
|
||||
# # - job: frontend build # transitive
|
||||
# # artifacts: false
|
||||
# # artifacts:
|
||||
# # paths:
|
||||
# # - uniworx:exe:uniworxload.nar.xz
|
||||
|
||||
# frontend lint:
|
||||
# stage: lint
|
||||
# script:
|
||||
# - make frontend-lint
|
||||
# cache:
|
||||
# - *frontend-cache
|
||||
# needs:
|
||||
# - job: frontend dependencies
|
||||
# artifacts: true
|
||||
# - job: well-known # TODO: is this really needed?
|
||||
# artifacts: true
|
||||
|
||||
# backend lint:
|
||||
# stage: lint
|
||||
# cache:
|
||||
# - *stack-cache
|
||||
# script:
|
||||
# # TODO: - make backend-lint-dev
|
||||
# - make backend-lint-prod
|
||||
# needs:
|
||||
# - job: backend dependencies
|
||||
# artifacts: true
|
||||
# - job: backend build
|
||||
# artifacts: true
|
||||
# - job: frontend build
|
||||
# artifacts: true
|
||||
# - job: well-known
|
||||
# artifacts: true
|
||||
|
||||
# frontend test:
|
||||
# stage: test
|
||||
# script:
|
||||
# - make frontend-test
|
||||
# cache: *frontend-cache
|
||||
# needs:
|
||||
# - job: frontend dependencies
|
||||
# artifacts: true
|
||||
# # TODO: configure report artifacts
|
||||
|
||||
# backend test:
|
||||
# stage: test
|
||||
# script:
|
||||
# - make backend-test-prod
|
||||
# cache: *stack-cache
|
||||
# needs:
|
||||
# - job: well-known
|
||||
# artifacts: true
|
||||
# - job: frontend build
|
||||
# artifacts: true
|
||||
# - job: backend dependencies
|
||||
# artifacts: true
|
||||
# - job: backend build
|
||||
# artifacts: true
|
||||
# # TODO: configure report artifacts
|
||||
|
||||
# # TODO: unify prod and test versions
|
||||
# # TODO: rewrite
|
||||
# container:
|
||||
# stage: container
|
||||
# script:
|
||||
# - xzcat uniworx:exe:uniworx.nar.xz | nix-store --import
|
||||
# - cp -pr --reflink=auto -L $(nix build --print-out-paths ".#uniworxDocker") uniworx.tar.gz
|
||||
# needs:
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend build # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - uniworx:exe:uniworxload.nar.xz
|
||||
# - uniworx.tar.gz
|
||||
# rules: &release-rules
|
||||
# - if: $CI_COMMIT_TAG =~ /^v/
|
||||
# # TODO: rewrite
|
||||
# test container:
|
||||
# stage: container
|
||||
# script:
|
||||
# - xzcat uniworx:exe:uniworx.nar.xz | nix-store --import
|
||||
# - cp -pr --reflink=auto -L $(nix build --print-out-paths ".#uniworxTestDocker") uniworx.tar.gz
|
||||
# needs:
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend build # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - uniworx.tar.gz
|
||||
# rules: &test-release-rules
|
||||
# - if: $CI_COMMIT_TAG =~ /^t/
|
||||
|
||||
frontend lint:
|
||||
stage: lint
|
||||
script:
|
||||
- make frontend-lint
|
||||
cache:
|
||||
- *frontend-cache
|
||||
needs:
|
||||
- job: frontend dependencies
|
||||
artifacts: true
|
||||
- job: well-known # TODO: is this really needed?
|
||||
artifacts: true
|
||||
# # TODO: unify prod and test versions
|
||||
# # TODO: rewrite
|
||||
# parse changelog:
|
||||
# stage: prepare release
|
||||
# needs:
|
||||
# - job: frontend dependencies
|
||||
# artifacts: true
|
||||
# rules: *release-rules
|
||||
# script:
|
||||
# - xzcat node-dependencies.nar.xz | nix-store --import
|
||||
# - nix -L run ".#jqChangelogJson" -- -r '.versions[0].version' > .current-version
|
||||
# - nix -L run ".#jqChangelogJson" -- -r '.versions[0].body' > .current-changelog.md
|
||||
# - echo "VERSION=$(cat .current-version)" >> build.env
|
||||
# artifacts:
|
||||
# reports:
|
||||
# dotenv: build.env
|
||||
# paths:
|
||||
# - .current-version
|
||||
# - .current-changelog.md
|
||||
# name: "changelog-${CI_COMMIT_SHORT_SHA}"
|
||||
# expire_in: "1 day"
|
||||
# # TODO: rewrite
|
||||
# parse test changelog:
|
||||
# stage: prepare release
|
||||
# needs:
|
||||
# - job: frontend dependencies
|
||||
# artifacts: true
|
||||
# rules: *test-release-rules
|
||||
# script:
|
||||
# - xzcat node-dependencies.nar.xz | nix-store --import
|
||||
# - nix -L run ".#jqChangelogJson" -- -r '.versions[0].version' > .current-version
|
||||
# - nix -L run ".#jqChangelogJson" -- -r '.versions[0].body' > .current-changelog.md
|
||||
# - echo "VERSION=$(cat .current-version)" >> build.env
|
||||
# artifacts:
|
||||
# reports:
|
||||
# dotenv: build.env
|
||||
# paths:
|
||||
# - .current-version
|
||||
# - .current-changelog.md
|
||||
# name: "changelog-${CI_COMMIT_SHORT_SHA}"
|
||||
|
||||
backend lint:
|
||||
stage: lint
|
||||
cache:
|
||||
- *stack-cache
|
||||
script:
|
||||
# TODO: - make backend-lint-dev
|
||||
- make backend-lint-prod
|
||||
needs:
|
||||
- job: backend dependencies
|
||||
artifacts: true
|
||||
- job: backend build
|
||||
artifacts: true
|
||||
- job: frontend build
|
||||
artifacts: true
|
||||
- job: well-known
|
||||
artifacts: true
|
||||
# # TODO: unify prod and test versions
|
||||
# # TODO: rewrite
|
||||
# upload container:
|
||||
# variables:
|
||||
# GIT_STRATEGY: none
|
||||
# stage: release
|
||||
# image: quay.io/skopeo/stable:latest
|
||||
# script:
|
||||
# - skopeo --insecure-policy copy --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker-archive://$(pwd)/uniworx.tar.gz docker://${CI_REGISTRY_IMAGE}:${VERSION}
|
||||
# - skopeo --insecure-policy copy --src-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker://${CI_REGISTRY_IMAGE}:${VERSION} docker://${CI_REGISTRY_IMAGE}:latest
|
||||
# needs:
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend build # transitive
|
||||
# artifacts: false
|
||||
# - job: container
|
||||
# artifacts: true
|
||||
# - job: parse changelog
|
||||
# artifacts: true
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# rules: *release-rules
|
||||
# # TODO: rewrite
|
||||
# upload test container:
|
||||
# variables:
|
||||
# GIT_STRATEGY: none
|
||||
# stage: release
|
||||
# image: quay.io/skopeo/stable:latest
|
||||
# script:
|
||||
# - skopeo --insecure-policy copy --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker-archive://$(pwd)/uniworx.tar.gz docker://${CI_REGISTRY}/fradrive/fradrive/test:${CI_COMMIT_REF_NAME}
|
||||
# - skopeo --insecure-policy copy --src-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker://${CI_REGISTRY}/fradrive/fradrive/test:${CI_COMMIT_REF_NAME} docker://${CI_REGISTRY}/fradrive/fradrive/test:latest
|
||||
# needs:
|
||||
# - job: frontend dependencies # transitive
|
||||
# artifacts: false
|
||||
# - job: frontend build # transitive
|
||||
# artifacts: false
|
||||
# - job: test container
|
||||
# artifacts: true
|
||||
# - job: parse test changelog
|
||||
# artifacts: true
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# rules: *test-release-rules
|
||||
|
||||
frontend test:
|
||||
stage: test
|
||||
script:
|
||||
- make frontend-test
|
||||
cache: *frontend-cache
|
||||
needs:
|
||||
- job: frontend dependencies
|
||||
artifacts: true
|
||||
# TODO: configure report artifacts
|
||||
|
||||
backend test:
|
||||
stage: test
|
||||
script:
|
||||
- make backend-test-prod
|
||||
cache: *stack-cache
|
||||
needs:
|
||||
- job: well-known
|
||||
artifacts: true
|
||||
- job: frontend build
|
||||
artifacts: true
|
||||
- job: backend dependencies
|
||||
artifacts: true
|
||||
- job: backend build
|
||||
artifacts: true
|
||||
# TODO: configure report artifacts
|
||||
|
||||
# TODO: unify prod and test versions
|
||||
# TODO: rewrite
|
||||
container:
|
||||
stage: container
|
||||
script:
|
||||
- xzcat uniworx:exe:uniworx.nar.xz | nix-store --import
|
||||
- cp -pr --reflink=auto -L $(nix build --print-out-paths ".#uniworxDocker") uniworx.tar.gz
|
||||
needs:
|
||||
- job: frontend dependencies # transitive
|
||||
artifacts: false
|
||||
- job: frontend build # transitive
|
||||
artifacts: false
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
artifacts:
|
||||
paths:
|
||||
- uniworx.tar.gz
|
||||
rules: &release-rules
|
||||
- if: $CI_COMMIT_TAG =~ /^v/
|
||||
# TODO: rewrite
|
||||
test container:
|
||||
stage: container
|
||||
script:
|
||||
- xzcat uniworx:exe:uniworx.nar.xz | nix-store --import
|
||||
- cp -pr --reflink=auto -L $(nix build --print-out-paths ".#uniworxTestDocker") uniworx.tar.gz
|
||||
needs:
|
||||
- job: frontend dependencies # transitive
|
||||
artifacts: false
|
||||
- job: frontend build # transitive
|
||||
artifacts: false
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
artifacts:
|
||||
paths:
|
||||
- uniworx.tar.gz
|
||||
rules: &test-release-rules
|
||||
- if: $CI_COMMIT_TAG =~ /^t/
|
||||
|
||||
# TODO: unify prod and test versions
|
||||
# TODO: rewrite
|
||||
parse changelog:
|
||||
stage: prepare release
|
||||
needs:
|
||||
- job: frontend dependencies
|
||||
artifacts: true
|
||||
rules: *release-rules
|
||||
script:
|
||||
- xzcat node-dependencies.nar.xz | nix-store --import
|
||||
- nix -L run ".#jqChangelogJson" -- -r '.versions[0].version' > .current-version
|
||||
- nix -L run ".#jqChangelogJson" -- -r '.versions[0].body' > .current-changelog.md
|
||||
- echo "VERSION=$(cat .current-version)" >> build.env
|
||||
artifacts:
|
||||
reports:
|
||||
dotenv: build.env
|
||||
paths:
|
||||
- .current-version
|
||||
- .current-changelog.md
|
||||
name: "changelog-${CI_COMMIT_SHORT_SHA}"
|
||||
expire_in: "1 day"
|
||||
# TODO: rewrite
|
||||
parse test changelog:
|
||||
stage: prepare release
|
||||
needs:
|
||||
- job: frontend dependencies
|
||||
artifacts: true
|
||||
rules: *test-release-rules
|
||||
script:
|
||||
- xzcat node-dependencies.nar.xz | nix-store --import
|
||||
- nix -L run ".#jqChangelogJson" -- -r '.versions[0].version' > .current-version
|
||||
- nix -L run ".#jqChangelogJson" -- -r '.versions[0].body' > .current-changelog.md
|
||||
- echo "VERSION=$(cat .current-version)" >> build.env
|
||||
artifacts:
|
||||
reports:
|
||||
dotenv: build.env
|
||||
paths:
|
||||
- .current-version
|
||||
- .current-changelog.md
|
||||
name: "changelog-${CI_COMMIT_SHORT_SHA}"
|
||||
|
||||
# TODO: unify prod and test versions
|
||||
# TODO: rewrite
|
||||
upload container:
|
||||
variables:
|
||||
GIT_STRATEGY: none
|
||||
stage: release
|
||||
image: quay.io/skopeo/stable:latest
|
||||
script:
|
||||
- skopeo --insecure-policy copy --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker-archive://$(pwd)/uniworx.tar.gz docker://${CI_REGISTRY_IMAGE}:${VERSION}
|
||||
- skopeo --insecure-policy copy --src-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker://${CI_REGISTRY_IMAGE}:${VERSION} docker://${CI_REGISTRY_IMAGE}:latest
|
||||
needs:
|
||||
- job: frontend dependencies # transitive
|
||||
artifacts: false
|
||||
- job: frontend build # transitive
|
||||
artifacts: false
|
||||
- job: container
|
||||
artifacts: true
|
||||
- job: parse changelog
|
||||
artifacts: true
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
rules: *release-rules
|
||||
# TODO: rewrite
|
||||
upload test container:
|
||||
variables:
|
||||
GIT_STRATEGY: none
|
||||
stage: release
|
||||
image: quay.io/skopeo/stable:latest
|
||||
script:
|
||||
- skopeo --insecure-policy copy --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker-archive://$(pwd)/uniworx.tar.gz docker://${CI_REGISTRY}/fradrive/fradrive/test:${CI_COMMIT_REF_NAME}
|
||||
- skopeo --insecure-policy copy --src-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" --dest-creds "${CI_REGISTRY_USER}:${CI_JOB_TOKEN}" docker://${CI_REGISTRY}/fradrive/fradrive/test:${CI_COMMIT_REF_NAME} docker://${CI_REGISTRY}/fradrive/fradrive/test:latest
|
||||
needs:
|
||||
- job: frontend dependencies # transitive
|
||||
artifacts: false
|
||||
- job: frontend build # transitive
|
||||
artifacts: false
|
||||
- job: test container
|
||||
artifacts: true
|
||||
- job: parse test changelog
|
||||
artifacts: true
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
rules: *test-release-rules
|
||||
|
||||
# TODO: unify prod and test versions
|
||||
# TODO: rewrite
|
||||
release:
|
||||
variables:
|
||||
GIT_STRATEGY: none
|
||||
stage: release
|
||||
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||
rules: *release-rules
|
||||
script:
|
||||
- echo "Will create release ${VERSION}..."
|
||||
release:
|
||||
name: '$VERSION'
|
||||
tag_name: '$CI_COMMIT_TAG'
|
||||
description: .current-changelog.md
|
||||
needs:
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
- job: parse changelog
|
||||
artifacts: true
|
||||
retry: 0
|
||||
# TODO: rewrite
|
||||
test release:
|
||||
variables:
|
||||
GIT_STRATEGY: none
|
||||
stage: release
|
||||
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||
rules: *test-release-rules
|
||||
script:
|
||||
- echo "Will create test release ${VERSION}-test..."
|
||||
release:
|
||||
name: "${VERSION}-test"
|
||||
tag_name: '$CI_COMMIT_TAG'
|
||||
description: .current-changelog.md
|
||||
needs:
|
||||
- job: frontend test # sanity
|
||||
artifacts: false
|
||||
- job: backend test # sanity
|
||||
artifacts: false
|
||||
- job: parse test changelog
|
||||
artifacts: true
|
||||
retry: 0
|
||||
# # TODO: unify prod and test versions
|
||||
# # TODO: rewrite
|
||||
# release:
|
||||
# variables:
|
||||
# GIT_STRATEGY: none
|
||||
# stage: release
|
||||
# image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||
# rules: *release-rules
|
||||
# script:
|
||||
# - echo "Will create release ${VERSION}..."
|
||||
# release:
|
||||
# name: '$VERSION'
|
||||
# tag_name: '$CI_COMMIT_TAG'
|
||||
# description: .current-changelog.md
|
||||
# needs:
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# - job: parse changelog
|
||||
# artifacts: true
|
||||
# retry: 0
|
||||
# # TODO: rewrite
|
||||
# test release:
|
||||
# variables:
|
||||
# GIT_STRATEGY: none
|
||||
# stage: release
|
||||
# image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||
# rules: *test-release-rules
|
||||
# script:
|
||||
# - echo "Will create test release ${VERSION}-test..."
|
||||
# release:
|
||||
# name: "${VERSION}-test"
|
||||
# tag_name: '$CI_COMMIT_TAG'
|
||||
# description: .current-changelog.md
|
||||
# needs:
|
||||
# - job: frontend test # sanity
|
||||
# artifacts: false
|
||||
# - job: backend test # sanity
|
||||
# artifacts: false
|
||||
# - job: parse test changelog
|
||||
# artifacts: true
|
||||
# retry: 0
|
||||
|
||||
Reference in New Issue
Block a user