chore(release) bump collect to 25.03.0 (#2045) #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-gorgone-testing | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
- dev-[2-9][0-9].[0-9][0-9].x | |
paths: | |
- ".version" | |
- ".github/docker/Dockerfile.gorgone-testing-*" | |
- ".github/workflows/docker-gorgone-testing.yml" | |
pull_request: | |
paths: | |
- ".version" | |
- ".github/docker/Dockerfile.gorgone-testing-*" | |
- ".github/workflows/docker-gorgone-testing.yml" | |
jobs: | |
get-environment: | |
if: github.repository == 'centreon/centreon-collect' | |
uses: ./.github/workflows/get-environment.yml | |
dockerize: | |
needs: [get-environment] | |
if: | | |
needs.get-environment.outputs.skip_workflow == 'false' && | |
needs.get-environment.outputs.stability != 'stable' | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
distrib: [alma8, alma9, bookworm] # No ubuntu in 24.10, 24.11 or later for now | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Login to registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
with: | |
registry: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }} | |
username: ${{ secrets.HARBOR_CENTREON_PUSH_USERNAME }} | |
password: ${{ secrets.HARBOR_CENTREON_PUSH_TOKEN }} | |
- name: Login to proxy registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
with: | |
registry: ${{ vars.DOCKER_PROXY_REGISTRY_URL }} | |
username: ${{ secrets.HARBOR_CENTREON_PUSH_USERNAME }} | |
password: ${{ secrets.HARBOR_CENTREON_PUSH_TOKEN }} | |
- uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 | |
- uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0 | |
with: | |
file: .github/docker/Dockerfile.gorgone-testing-${{ matrix.distrib }} | |
context: . | |
build-args: | | |
"VERSION=${{ needs.get-environment.outputs.major_version }}" | |
"IS_CLOUD=${{ needs.get-environment.outputs.is_cloud }}" | |
pull: true | |
push: true | |
tags: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/gorgone-testing-${{ matrix.distrib }}:${{ needs.get-environment.outputs.major_version }} | |
secrets: | | |
"ARTIFACTORY_INTERNAL_REPO_USERNAME=${{ secrets.ARTIFACTORY_INTERNAL_REPO_USERNAME }}" | |
"ARTIFACTORY_INTERNAL_REPO_PASSWORD=${{ secrets.ARTIFACTORY_INTERNAL_REPO_PASSWORD }}" | |
set-skip-label: | |
needs: [get-environment, dockerize] | |
if: | | |
needs.get-environment.outputs.skip_workflow == 'false' && | |
! cancelled() && | |
! contains(needs.*.result, 'failure') && | |
! contains(needs.*.result, 'cancelled') | |
uses: ./.github/workflows/set-pull-request-skip-label.yml |