gitlab-notification/.gitlab-ci.yml

36 lines
791 B
YAML
Raw Normal View History

2022-01-26 10:56:18 +03:00
stages:
- build
- deploy
build:
2022-01-26 12:41:36 +03:00
image: maven:3.8.4-openjdk-17
2022-01-26 10:56:18 +03:00
stage: build
2022-01-26 12:41:36 +03:00
variables:
MAVEN_OPTS: "-Dmaven.repo.local=./.m2/repository"
2022-01-26 10:56:18 +03:00
only:
2022-01-30 12:35:24 +03:00
- test
# - /^v.*$/
# except:
# - branches
2022-01-26 10:56:18 +03:00
script:
- 'mvn -U clean package'
artifacts:
paths:
- gitlab-app/target/gitlab-notification.jar
2022-01-26 12:41:36 +03:00
docker-build:
2022-01-26 17:39:04 +03:00
image: upagge/docker-buildx:latest
2022-01-26 10:56:18 +03:00
stage: deploy
only:
2022-01-30 12:35:24 +03:00
# - /^v.*$/
- test
# except:
# - branches
2022-01-26 10:56:18 +03:00
services:
- docker:dind
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin
script:
2022-01-26 10:59:40 +03:00
- cd gitlab-app
2022-01-26 12:41:36 +03:00
- docker buildx create --use
2022-01-30 12:35:24 +03:00
- docker buildx build --push --platform linux/amd64,linux/arm64/v8,windows/amd64 -t "$CI_REGISTRY_IMAGE:latest" .