Compare commits
6 commits
main
...
docker-tes
Author | SHA1 | Date | |
---|---|---|---|
edb7a6697f | |||
295f3893ec | |||
af1bc4a911 | |||
3a7b12af09 | |||
49a5a41e1b | |||
eb71d980a7 |
2 changed files with 6 additions and 116 deletions
120
.gitlab-ci.yml
120
.gitlab-ci.yml
|
@ -1,121 +1,11 @@
|
||||||
stages:
|
stages:
|
||||||
- build_and_test
|
|
||||||
- package
|
|
||||||
- security
|
|
||||||
- upload
|
|
||||||
- image
|
- image
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- docker:19.03.12-dind
|
- docker:dind
|
||||||
|
|
||||||
.cljs-job: &cljs
|
website-image-test-publish:
|
||||||
image: domaindrivenarchitecture/shadow-cljs
|
image: domaindrivenarchitecture/devops-build:latest
|
||||||
cache:
|
stage: image
|
||||||
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:
|
script:
|
||||||
- shadow-cljs compile test
|
- cd infrastructure/c4k-website-build && pyb image 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
|
|
||||||
- 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 -
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1h
|
|
||||||
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:
|
|
||||||
expire_in: 1h
|
|
||||||
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:
|
|
||||||
expire_in: 1h
|
|
||||||
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:
|
|
||||||
expire_in: 1h
|
|
||||||
paths:
|
|
||||||
- target/uberjar
|
|
||||||
|
|
||||||
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:
|
|
||||||
expire_in: 24h
|
|
||||||
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\"}" \
|
|
|
@ -12,7 +12,7 @@ class MyBuild(DevopsDockerBuild):
|
||||||
|
|
||||||
@init
|
@init
|
||||||
def initialize(project):
|
def initialize(project):
|
||||||
project.build_depends_on('ddadevops>=0.12.4')
|
project.build_depends_on('ddadevops>=3.1.3')
|
||||||
stage = 'prod'
|
stage = 'prod'
|
||||||
dockerhub_user = environ.get('DOCKERHUB_USER')
|
dockerhub_user = environ.get('DOCKERHUB_USER')
|
||||||
if not dockerhub_user:
|
if not dockerhub_user:
|
||||||
|
|
Loading…
Reference in a new issue