2020-06-23 00:24:20 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- publish
|
2020-07-19 02:05:39 +00:00
|
|
|
- publish_latest
|
2020-07-02 16:12:34 +00:00
|
|
|
- publish_docker
|
2020-06-23 00:24:20 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
image: openjdk:8
|
|
|
|
stage: build
|
|
|
|
script:
|
2021-02-21 18:19:49 +00:00
|
|
|
- export VERSION="$CI_COMMIT_REF_NAME"
|
2020-06-23 00:24:20 +00:00
|
|
|
- ./gradlew build
|
2021-02-05 18:22:02 +00:00
|
|
|
- "ls -lah build/libs"
|
2021-02-21 18:19:49 +00:00
|
|
|
cache:
|
|
|
|
key: "mangadex_at_home-build"
|
|
|
|
paths:
|
|
|
|
- /root/.gradle
|
|
|
|
artifacts:
|
|
|
|
name: "mangadex_at_home"
|
|
|
|
paths:
|
|
|
|
- "build/libs/mangadex_at_home-*-all.jar"
|
2020-06-23 00:24:20 +00:00
|
|
|
|
|
|
|
publish:
|
|
|
|
image: alpine
|
|
|
|
stage: publish
|
|
|
|
before_script:
|
2020-07-02 16:12:34 +00:00
|
|
|
- apk update && apk add git zip
|
2021-02-21 18:19:49 +00:00
|
|
|
- export VERSION="$CI_COMMIT_REF_NAME"
|
2020-07-02 16:12:34 +00:00
|
|
|
script:
|
2020-06-23 00:24:20 +00:00
|
|
|
- cp build/libs/mangadex_at_home-${VERSION}-all.jar ./
|
2021-03-25 23:34:30 +00:00
|
|
|
- zip -r9 mangadex_at_home-${VERSION}.zip mangadex_at_home-${VERSION}-all.jar settings.sample.yaml
|
2021-02-21 18:19:49 +00:00
|
|
|
dependencies:
|
|
|
|
- build
|
2020-06-23 00:24:20 +00:00
|
|
|
artifacts:
|
2020-07-02 16:12:34 +00:00
|
|
|
name: "mangadex_at_home"
|
2020-06-23 00:24:20 +00:00
|
|
|
paths:
|
2021-02-21 18:19:49 +00:00
|
|
|
- "mangadex_at_home-*-all.jar"
|
2020-07-19 02:05:39 +00:00
|
|
|
- "mangadex_at_home-*.zip"
|
2021-02-21 18:19:49 +00:00
|
|
|
- "settings.sample.yaml"
|
2020-07-19 02:05:39 +00:00
|
|
|
|
2020-07-02 16:12:34 +00:00
|
|
|
publish_docker:
|
|
|
|
image: docker:git
|
|
|
|
stage: publish
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
services:
|
|
|
|
- docker:dind
|
|
|
|
before_script:
|
|
|
|
- echo "$CI_REGISTRY_PASSWORD" | docker login -u "$CI_REGISTRY_USER" --password-stdin ${CI_REGISTRY}
|
2021-02-21 18:19:49 +00:00
|
|
|
- export VERSION="$CI_COMMIT_REF_NAME"
|
|
|
|
dependencies:
|
|
|
|
- build
|
2020-07-02 16:12:34 +00:00
|
|
|
script:
|
|
|
|
- mv build/libs/mangadex_at_home-${VERSION}-all.jar build/libs/mangadex_at_home.jar
|
2021-02-21 18:19:49 +00:00
|
|
|
- docker build . -t ${CI_REGISTRY_IMAGE}:${VERSION}
|
2020-07-02 16:12:34 +00:00
|
|
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSION}
|