Skip to content
Snippets Groups Projects
Commit f69f2bf4 authored by trantzas's avatar trantzas
Browse files

Merge branch...

Merge branch '5-create-a-pipeline-to-build-and-publish-the-docker-image-in-gitlab-registry' into 'develop'

Resolve "Create a pipeline to build and publish the docker image in gitlab registry"

See merge request !4
parents e94238e5 95fa1d16
No related branches found
No related tags found
2 merge requests!7Merging 2024Q2_RC into main, creating 2024Q2 Release,!4Resolve "Create a pipeline to build and publish the docker image in gitlab registry"
Pipeline #4141 passed
stages:
- deploy
include:
- project: osl/code/org.etsi.osl.main
ref: main
file:
- ci-templates/default.yml
- ci-templates/build.yml
rules:
- if: '$CI_COMMIT_REF_NAME == "main"'
- project: osl/code/org.etsi.osl.main
ref: develop
file:
- ci-templates/default.yml
- ci-templates/build.yml
rules:
- if: '$CI_COMMIT_REF_NAME == "develop"'
deploy:
stage: deploy
image: maven:3.9.5-ibm-semeru-17-focal
script:
- mvn deploy -s ci_settings.xml -DskipTests
- project: osl/code/org.etsi.osl.main
ref: develop
file:
- ci-templates/default.yml
- ci-templates/build_unprotected.yml
rules:
- if: '$CI_COMMIT_REF_NAME != "main" && $CI_COMMIT_REF_NAME != "develop"'
maven_build:
extends: .maven_build
docker_build:
extends: .docker_build
needs:
- maven_build
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment