This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/.gitlab-ci.yml

111 lines
2.6 KiB
YAML
Raw Normal View History

2021-02-09 19:14:09 +00:00
stages:
2021-02-12 12:26:24 +00:00
- build_and_test
2021-02-10 12:03:38 +00:00
- package
2021-02-10 15:04:56 +00:00
- security
2021-02-10 12:03:38 +00:00
- upload
2021-03-12 12:43:51 +00:00
- image
services:
- docker:19.03.12-dind
2021-02-09 19:14:09 +00:00
2021-02-10 15:04:56 +00:00
.cljs-job: &cljs
image: domaindrivenarchitecture/shadow-cljs
2021-02-10 15:04:56 +00:00
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- .shadow-cljs/
- .m2
2021-02-10 15:04:56 +00:00
before_script:
2021-02-12 11:28:21 +00:00
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
2021-03-17 07:01:10 +00:00
- npm install
2021-02-10 15:04:56 +00:00
2021-03-17 07:01:10 +00:00
.clj-uploadjob: &clj
2021-03-11 16:56:47 +00:00
image: clojure:lein-2.7.1-alpine
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .m2
2021-03-12 09:42:17 +00:00
before_script:
- echo "{:auth {:repository-auth {#\"clojars\" {:username \"${CLOJARS_USER}\" :password \"${CLOJARS_PASSWORD}\" }}}}" > ~/.lein/profiles.clj
2021-03-11 16:56:47 +00:00
2021-03-16 08:26:16 +00:00
test-cljs:
2021-02-10 15:04:56 +00:00
<<: *cljs
2021-02-12 12:26:24 +00:00
stage: build_and_test
2021-02-10 14:23:06 +00:00
script:
2021-02-09 19:14:09 +00:00
- shadow-cljs compile test
2021-02-10 12:03:38 +00:00
2021-03-16 08:26:16 +00:00
test-clj:
2021-03-17 07:01:10 +00:00
<<: *clj
2021-03-16 08:23:12 +00:00
stage: build_and_test
script:
- lein test
2021-03-12 09:42:17 +00:00
#activate as soon as https://github.com/thheller/shadow-cljs/issues/843 is implemented
2021-02-12 12:26:24 +00:00
.report:
2021-02-10 15:04:56 +00:00
<<: *cljs
2021-02-12 12:26:24 +00:00
stage: build_and_test
script:
- shadow-cljs run shadow.cljs.build-report app target/build-report.html
2021-02-10 12:03:38 +00:00
artifacts:
paths:
2021-02-12 12:26:24 +00:00
- target/build-report.html
package:
<<: *cljs
stage: package
2021-02-10 14:23:06 +00:00
script:
2021-03-17 07:01:10 +00:00
- mkdir -p target/npm-build
2021-03-12 12:43:51 +00:00
- shadow-cljs release app
2021-03-17 07:01:10 +00:00
- cp README.md target/npm-build/
2021-03-17 07:21:27 +00:00
- cp package.json target/npm-build/
2021-03-17 07:01:10 +00:00
- chmod a+x target/npm-build/mastodon-bot.js
- sha256sum target/npm-build/mastodon-bot.js > target/npm-build/mastodon-bot.js.sha256
2021-03-17 07:21:27 +00:00
- sha512sum target/npm-build/mastodon-bot.js > target/npm-build/mastodon-bot.js.sha512
2021-02-12 12:26:24 +00:00
artifacts:
paths:
2021-03-17 07:01:10 +00:00
- target/npm-build
2021-02-10 12:03:38 +00:00
sast:
variables:
SAST_EXCLUDED_ANALYZERS:
bandit, brakeman, flawfinder, gosec, kubesec, phpcs-security-audit,
pmd-apex, security-code-scan, sobelow, spotbugs
stage: security
before_script:
- mkdir -p builds && cp -r target/ builds/
include:
- template: Security/SAST.gitlab-ci.yml
2021-02-10 15:04:56 +00:00
2021-03-11 16:56:47 +00:00
upload-cljs-prerelease:
2021-03-17 07:01:10 +00:00
<<: *cljs
2021-02-10 12:52:50 +00:00
stage: upload
rules:
- if: '$CI_COMMIT_BRANCH == "master" && $CI_COMMIT_TAG == null'
2021-02-10 14:23:06 +00:00
script:
2021-03-12 09:42:17 +00:00
- sed -i 's|SNAPSHOT|'$(date +"%Y%m%d%H%M%S")'|' ./target/npm-build/package.json
2021-02-12 11:28:21 +00:00
- npm publish ./target/npm-build --access public
2021-02-10 12:52:50 +00:00
2021-03-11 16:56:47 +00:00
upload-clj-prerelease:
2021-03-17 07:01:10 +00:00
<<: *clj
2021-03-11 16:56:47 +00:00
stage: upload
rules:
- if: '$CI_COMMIT_BRANCH == "master" && $CI_COMMIT_TAG == null'
2021-03-11 16:56:47 +00:00
script:
2021-03-12 09:42:17 +00:00
- lein deploy clojars
2021-03-11 16:56:47 +00:00
upload-cljs-release:
2021-03-17 07:01:10 +00:00
<<: *cljs
2021-02-10 12:52:50 +00:00
stage: upload
rules:
- if: '$CI_COMMIT_TAG != null'
2021-02-10 14:23:06 +00:00
script:
2021-02-12 11:28:21 +00:00
- npm publish ./target/npm-build --access public
2021-03-12 12:43:51 +00:00
2021-03-12 16:57:35 +00:00
image-test-publish:
image: domaindrivenarchitecture/devops-build:latest
2021-03-12 12:43:51 +00:00
stage: image
rules:
- if: '$CI_COMMIT_TAG != null'
2021-03-12 12:43:51 +00:00
script:
- cd infrastructure/docker && pyb image test publish