2022-09-08 13:04:17 +00:00
|
|
|
stages:
|
|
|
|
- build_and_test
|
|
|
|
- package
|
|
|
|
- security
|
|
|
|
- upload
|
|
|
|
- image
|
|
|
|
|
|
|
|
services:
|
2023-01-20 13:01:18 +00:00
|
|
|
- docker:dind
|
2022-09-08 13:04:17 +00:00
|
|
|
|
|
|
|
.cljs-job: &cljs
|
|
|
|
image: domaindrivenarchitecture/shadow-cljs
|
|
|
|
cache:
|
|
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
|
|
|
- .shadow-cljs/
|
|
|
|
- .m2
|
|
|
|
before_script:
|
|
|
|
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
|
|
|
|
- npm install
|
|
|
|
|
|
|
|
.clj-uploadjob: &clj
|
|
|
|
image: domaindrivenarchitecture/lein
|
|
|
|
cache:
|
|
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
|
|
paths:
|
|
|
|
- .m2
|
|
|
|
before_script:
|
|
|
|
- mkdir -p /root/.lein
|
|
|
|
- echo "{:auth {:repository-auth {#\"clojars\" {:username \"${CLOJARS_USER}\" :password \"${CLOJARS_TOKEN_DOMAINDRIVENARCHITECTURE}\" }}}}" > ~/.lein/profiles.clj
|
|
|
|
|
|
|
|
test-cljs:
|
|
|
|
<<: *cljs
|
|
|
|
stage: build_and_test
|
|
|
|
script:
|
|
|
|
- shadow-cljs compile test
|
|
|
|
- node target/node-tests.js
|
|
|
|
|
|
|
|
test-clj:
|
|
|
|
<<: *clj
|
|
|
|
stage: build_and_test
|
|
|
|
script:
|
|
|
|
- lein test
|
|
|
|
|
|
|
|
test-schema:
|
|
|
|
<<: *clj
|
|
|
|
stage: build_and_test
|
|
|
|
script:
|
|
|
|
- lein uberjar
|
2022-12-28 18:52:54 +00:00
|
|
|
- java -jar target/uberjar/c4k-website-standalone.jar src/test/resources/website-test/valid-config.yaml src/test/resources/website-test/valid-auth.yaml | kubeconform --kubernetes-version 1.23.0 --strict --skip Certificate -
|
2022-09-08 13:04:17 +00:00
|
|
|
artifacts:
|
2022-11-23 10:14:46 +00:00
|
|
|
expire_in: 1h
|
2022-09-08 13:04:17 +00:00
|
|
|
paths:
|
|
|
|
- target/uberjar
|
|
|
|
|
|
|
|
report-frontend:
|
|
|
|
<<: *cljs
|
|
|
|
stage: package
|
|
|
|
script:
|
|
|
|
- mkdir -p target/frontend-build
|
|
|
|
- shadow-cljs run shadow.cljs.build-report frontend target/frontend-build/build-report.html
|
|
|
|
artifacts:
|
2022-11-09 10:45:21 +00:00
|
|
|
expire_in: 1h
|
2022-09-08 13:04:17 +00:00
|
|
|
paths:
|
|
|
|
- target/frontend-build/build-report.html
|
|
|
|
|
|
|
|
package-frontend:
|
|
|
|
<<: *cljs
|
|
|
|
stage: package
|
|
|
|
script:
|
|
|
|
- mkdir -p target/frontend-build
|
|
|
|
- shadow-cljs release frontend
|
|
|
|
- cp public/js/main.js target/frontend-build/c4k-website.js
|
|
|
|
- sha256sum target/frontend-build/c4k-website.js > target/frontend-build/c4k-website.js.sha256
|
|
|
|
- sha512sum target/frontend-build/c4k-website.js > target/frontend-build/c4k-website.js.sha512
|
|
|
|
artifacts:
|
2022-11-09 10:45:21 +00:00
|
|
|
expire_in: 1h
|
2022-09-08 13:04:17 +00:00
|
|
|
paths:
|
|
|
|
- target/frontend-build
|
|
|
|
|
|
|
|
package-uberjar:
|
|
|
|
<<: *clj
|
|
|
|
stage: package
|
|
|
|
script:
|
|
|
|
- lein uberjar
|
|
|
|
- sha256sum target/uberjar/c4k-website-standalone.jar > target/uberjar/c4k-website-standalone.jar.sha256
|
|
|
|
- sha512sum target/uberjar/c4k-website-standalone.jar > target/uberjar/c4k-website-standalone.jar.sha512
|
|
|
|
artifacts:
|
2022-11-09 10:45:21 +00:00
|
|
|
expire_in: 1h
|
2022-09-08 13:04:17 +00:00
|
|
|
paths:
|
2022-11-09 10:45:21 +00:00
|
|
|
- target/uberjar
|
2022-09-08 13:04:17 +00:00
|
|
|
|
|
|
|
upload-clj-release:
|
|
|
|
<<: *clj
|
|
|
|
stage: upload
|
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG != null'
|
|
|
|
script:
|
|
|
|
- lein deploy
|
|
|
|
|
|
|
|
release:
|
|
|
|
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
|
|
|
stage: upload
|
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG != null'
|
|
|
|
artifacts:
|
2022-11-09 10:45:21 +00:00
|
|
|
expire_in: 24h
|
2022-09-08 13:04:17 +00:00
|
|
|
paths:
|
|
|
|
- target/uberjar
|
|
|
|
- target/frontend-build
|
|
|
|
script:
|
|
|
|
- apk --no-cache add curl
|
|
|
|
- |
|
|
|
|
release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG \
|
|
|
|
--assets-link "{\"name\":\"c4k-website-standalone.jar\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-website-standalone.jar\"}" \
|
|
|
|
--assets-link "{\"name\":\"c4k-website-standalone.jar.sha256\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-website-standalone.jar.sha256\"}" \
|
|
|
|
--assets-link "{\"name\":\"c4k-website-standalone.jar.sha512\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-website-standalone.jar.sha512\"}" \
|
|
|
|
--assets-link "{\"name\":\"c4k-website.js\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-website.js\"}" \
|
|
|
|
--assets-link "{\"name\":\"c4k-website.js.sha256\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-website.js.sha256\"}" \
|
|
|
|
--assets-link "{\"name\":\"c4k-website.js.sha512\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-website/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-website.js.sha512\"}" \
|
2023-01-20 13:01:18 +00:00
|
|
|
|
|
|
|
website-image-test-publish:
|
|
|
|
image: domaindrivenarchitecture/devops-build:latest
|
|
|
|
stage: image
|
|
|
|
rules:
|
|
|
|
- if: '$CI_COMMIT_TAG != null'
|
|
|
|
script:
|
|
|
|
- cd infrastructure/c4k-website-build && pyb image test publish
|