You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c4k-website/.gitlab-ci.yml

124 lines
2.4 KiB
YAML

2 years ago
stages:
- build_and_test
- package
- security
- upload
- image
.img: &img
image: "domaindrivenarchitecture/ddadevops-dind:4.11.4"
services:
- docker:dind
before_script:
- export RELEASE_ARTIFACT_TOKEN=$MEISSA_REPO_BUERO_RW
- export IMAGE_DOCKERHUB_USER=$DOCKERHUB_USER
- export IMAGE_DOCKERHUB_PASSWORD=$DOCKERHUB_PASSWORD
- export IMAGE_TAG=$CI_COMMIT_TAG
2 years ago
.cljs-job: &cljs
image: "domaindrivenarchitecture/ddadevops-clj-cljs:4.11.4"
2 years ago
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- .shadow-cljs/
- .m2
before_script:
- export RELEASE_ARTIFACT_TOKEN=$MEISSA_REPO_BUERO_RW
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
- npm install
2 years ago
.clj-job: &clj
image: "domaindrivenarchitecture/ddadevops-clj:4.11.4"
2 years ago
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .m2
before_script:
- export RELEASE_ARTIFACT_TOKEN=$MEISSA_REPO_BUERO_RW
- mkdir -p /root/.lein
- echo "{:auth {:repository-auth {#\"clojars\" {:username \"${CLOJARS_USER}\" :password \"${CLOJARS_TOKEN_DOMAINDRIVENARCHITECTURE}\" }}}}" > ~/.lein/profiles.clj
2 years ago
.tag_only: &tag_only
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
2 years ago
test-clj:
<<: *clj
stage: build_and_test
script:
- pyb test_clj
test-cljs:
<<: *cljs
stage: build_and_test
script:
- pyb test_cljs
2 years ago
test-schema:
<<: *clj
stage: build_and_test
script:
- pyb test_schema
2 years ago
artifacts:
paths:
- target/uberjar
report-frontend:
<<: *cljs
stage: package
script:
- pyb report_frontend
2 years ago
artifacts:
paths:
- target/frontend-build/build-report.html
package-frontend:
<<: *cljs
stage: package
script:
- pyb package_frontend
2 years ago
artifacts:
paths:
- target/frontend-build
package-uberjar:
<<: *clj
stage: package
script:
- pyb package_uberjar
2 years ago
artifacts:
paths:
- target/uberjar
2 years ago
package-native:
<<: *clj
stage: package
script:
- pyb package_native
artifacts:
paths:
- target/graalvm
release-to-clojars:
2 years ago
<<: *clj
<<: *tag_only
2 years ago
stage: upload
script:
- pyb upload_clj
2 years ago
release-to-forgejo:
<<: *clj
<<: *tag_only
2 years ago
stage: upload
script:
- pyb publish_artifacts
website-image-publish:
<<: *img
<<: *tag_only
stage: image
script:
- cd infrastructure/build && pyb image publish