dda-masto-embed/.gitlab-ci.yml

56 lines
1,002 B
YAML
Raw Normal View History

2024-05-10 10:10:59 +00:00
stages:
- build_and_test
- package
- upload
.cljs-job: &cljs
image: "domaindrivenarchitecture/ddadevops-clj-cljs:4.11.3"
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
.tag_only: &tag_only
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
test-cljs:
<<: *cljs
stage: build_and_test
script:
- pyb test_cljs
report-frontend:
<<: *cljs
stage: package
script:
- pyb report_frontend
artifacts:
paths:
2024-05-10 10:23:07 +00:00
- target/build-report.html
2024-05-10 10:10:59 +00:00
package-frontend:
<<: *cljs
stage: package
script:
- pyb package_frontend
artifacts:
paths:
2024-05-10 10:23:07 +00:00
- target/
2024-05-10 10:10:59 +00:00
release-to-forgejo:
<<: *cljs
<<: *tag_only
stage: upload
script:
- pyb publish_artifacts