2021-10-08 12:23:51 +02:00
|
|
|
name: Build images (DockerHub, Windows)
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types:
|
|
|
|
- published
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'trunk'
|
|
|
|
paths:
|
|
|
|
- 'Dockerfiles/*/windows/*'
|
|
|
|
- '.github/workflows/images_build_windows.yml'
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
2021-10-08 12:27:10 +02:00
|
|
|
shell: pwsh
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
env:
|
|
|
|
DOCKER_REPOSITORY: "zabbix"
|
|
|
|
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
|
|
|
|
BASE_BUILD_NAME: "build-base"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
init_build:
|
|
|
|
name: Initialize build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
os: ${{ steps.os.outputs.list }}
|
|
|
|
components: ${{ steps.components.outputs.list }}
|
|
|
|
is_default_branch: ${{ steps.branch_info.outputs.is_default }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Check build.json file
|
|
|
|
id: build_exists
|
|
|
|
run: |
|
2021-10-08 12:31:16 +02:00
|
|
|
if (-not(Test-Path -Path "./build.json" -PathType Leaf)) {
|
2021-10-08 12:30:24 +02:00
|
|
|
throw "::error::File build.json is missing"
|
|
|
|
}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
- name: Prepare Operating System list
|
|
|
|
id: os
|
|
|
|
run: |
|
2021-10-08 14:34:44 +02:00
|
|
|
$os_list='["ltsc2022"]'
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
echo "::set-output name=list::$os_list"
|
|
|
|
|
|
|
|
- name: Prepare Zabbix component list
|
|
|
|
id: components
|
|
|
|
run: |
|
2021-10-08 12:53:30 +02:00
|
|
|
$component_list='["agent","agent2"]'
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
echo "::set-output name=list::$component_list"
|
|
|
|
|
|
|
|
- name: Get branch info
|
|
|
|
id: branch_info
|
|
|
|
uses: tj-actions/branch-names@v5
|
|
|
|
|
|
|
|
build_base:
|
|
|
|
timeout-minutes: 70
|
2021-10-08 14:37:57 +02:00
|
|
|
name: Build ${{ matrix.build }} base on ${{ matrix.os }}
|
2021-10-08 12:23:51 +02:00
|
|
|
needs: init_build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
2021-10-08 12:53:30 +02:00
|
|
|
build: ${{ fromJson(needs.init_build.outputs.components) }}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Generate tags
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: ${{ env.DOCKER_REPOSITORY }}/zabbix-${{ env.BASE_BUILD_NAME }}
|
|
|
|
tags: |
|
2021-10-08 15:56:05 +02:00
|
|
|
type=ref,event=branch,prefix=${{ matrix.build }}-${{ matrix.os }}-
|
|
|
|
type=ref,event=branch,suffix=-${{ matrix.os }},prefix=${{ matrix.build }}-
|
2021-10-08 12:23:51 +02:00
|
|
|
flavor: |
|
|
|
|
latest=false
|
|
|
|
|
2021-10-08 12:53:30 +02:00
|
|
|
- name: Build ${{ env.BASE_BUILD_NAME }}/${{ matrix.build }}-${{ matrix.os }} and push
|
2021-10-08 12:23:51 +02:00
|
|
|
id: docker_build
|
2021-10-08 13:41:53 +02:00
|
|
|
run: |
|
2021-10-08 15:56:05 +02:00
|
|
|
$tags_array=$( "${{ steps.meta.outputs.tags}}".Split("`r`n") )
|
2021-10-08 16:09:18 +02:00
|
|
|
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
2021-10-08 16:18:42 +02:00
|
|
|
|
2021-10-08 14:34:44 +02:00
|
|
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
2021-10-08 18:46:04 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 16:18:42 +02:00
|
|
|
|
2021-10-08 15:56:05 +02:00
|
|
|
echo "docker build --file=.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\Dockerfile.${{ matrix.build }} $tags .\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\"
|
|
|
|
docker build --file=.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\Dockerfile.${{ matrix.build }} $tags .\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\
|
2021-10-08 18:46:04 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 16:18:42 +02:00
|
|
|
|
2021-10-08 19:16:47 +02:00
|
|
|
Foreach ($tag in $tags_array) {
|
|
|
|
echo "docker image push $tag"
|
2021-10-08 18:46:04 +02:00
|
|
|
docker image push $tag
|
|
|
|
if (-not $?) {throw "Failed"}
|
|
|
|
}
|
2021-10-08 14:34:44 +02:00
|
|
|
docker logout
|
2021-10-08 18:46:04 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
2021-10-08 15:57:08 +02:00
|
|
|
$digest=$(docker inspect $tags_array[0] --format "{{.Id}}")
|
2021-10-08 18:46:04 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 15:12:05 +02:00
|
|
|
echo $digest
|
|
|
|
echo "$digest" > ${{ env.BASE_BUILD_NAME }}_${{ matrix.os }}_${{ matrix.build }}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
- name: Upload SHA256 tag
|
2021-10-08 15:43:13 +02:00
|
|
|
uses: actions/upload-artifact@v2.2.4
|
2021-10-08 12:23:51 +02:00
|
|
|
with:
|
2021-10-08 15:12:05 +02:00
|
|
|
name: ${{ env.BASE_BUILD_NAME }}_${{ matrix.os }}_${{ matrix.build }}
|
|
|
|
path: ${{ env.BASE_BUILD_NAME }}_${{ matrix.os }}_${{ matrix.build }}
|
2021-10-08 12:23:51 +02:00
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
build_base_database:
|
|
|
|
timeout-minutes: 70
|
|
|
|
needs: [ "build_base", "init_build"]
|
2021-10-08 19:16:47 +02:00
|
|
|
name: Build ${{ matrix.build }} sources on ${{ matrix.os }}
|
2021-10-08 12:23:51 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-10-08 18:46:04 +02:00
|
|
|
build: ${{ fromJson(needs.init_build.outputs.components) }}
|
2021-10-08 12:23:51 +02:00
|
|
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
|
|
|
|
|
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
|
|
|
|
- name: Generate tags
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: ${{ env.DOCKER_REPOSITORY }}/zabbix-${{ matrix.build }}
|
|
|
|
tags: |
|
2021-10-08 17:08:55 +02:00
|
|
|
type=ref,event=branch,prefix=${{ matrix.build }}-${{ matrix.os }}-
|
|
|
|
type=ref,event=branch,suffix=-${{ matrix.os }},prefix=${{ matrix.build }}-
|
2021-10-08 12:23:51 +02:00
|
|
|
flavor: |
|
|
|
|
latest=false
|
|
|
|
|
|
|
|
- name: Download SHA256 tag build-base:${{ matrix.os }}
|
|
|
|
uses: actions/download-artifact@v2.0.10
|
|
|
|
with:
|
2021-10-08 17:08:55 +02:00
|
|
|
name: ${{ env.BASE_BUILD_NAME }}_${{ matrix.os }}_${{ matrix.build }}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
- name: Retrieve build-base:${{ matrix.os }} SHA256 tag
|
|
|
|
id: base_build
|
|
|
|
run: |
|
2021-10-08 17:08:55 +02:00
|
|
|
BASE_TAG=$(cat build-base_${{ matrix.os }}_${{ matrix.build }})
|
2021-10-08 12:23:51 +02:00
|
|
|
BUILD_BASE_IMAGE=${{ env.DOCKER_REPOSITORY }}/zabbix-build-base@${BASE_TAG}
|
|
|
|
|
|
|
|
echo ::set-output name=base_tag::${BASE_TAG}
|
|
|
|
echo ::set-output name=base_build_image::${BUILD_BASE_IMAGE}
|
|
|
|
|
2021-10-08 17:08:55 +02:00
|
|
|
- name: Build ${{ matrix.build }}/${{ matrix.os }}:${{ matrix.os }} and push
|
2021-10-08 12:23:51 +02:00
|
|
|
id: docker_build
|
|
|
|
run: |
|
2021-10-08 17:08:55 +02:00
|
|
|
$tags_array=$( "${{ steps.meta.outputs.tags}}".Split("`r`n") )
|
|
|
|
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
|
|
|
|
|
|
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
2021-10-08 18:16:41 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 17:08:55 +02:00
|
|
|
|
|
|
|
echo "docker build --file=.\Dockerfiles\build-mysql\windows\Dockerfile.${{ matrix.build }} $tags .\Dockerfiles\build-mysql\windows\"
|
|
|
|
docker build --build-arg=BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }} --file=.\Dockerfiles\build-mysql\windows\Dockerfile.${{ matrix.build }} $tags .\Dockerfiles\build-mysql\windows\
|
2021-10-08 18:16:41 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 17:08:55 +02:00
|
|
|
|
2021-10-08 19:16:47 +02:00
|
|
|
Foreach ($tag in $tags_array) {
|
2021-10-08 18:16:41 +02:00
|
|
|
docker image push $tag
|
|
|
|
if (-not $?) {throw "Failed"}
|
|
|
|
}
|
2021-10-08 17:08:55 +02:00
|
|
|
docker logout
|
2021-10-08 18:16:41 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 17:08:55 +02:00
|
|
|
|
|
|
|
$digest=$(docker inspect $tags_array[0] --format "{{.Id}}")
|
2021-10-08 18:16:41 +02:00
|
|
|
if (-not $?) {throw "Failed"}
|
2021-10-08 17:08:55 +02:00
|
|
|
echo $digest
|
|
|
|
echo "$digest" > base-mysql_${{ matrix.os }}_${{ matrix.build }})
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
- name: Upload SHA256 tag
|
|
|
|
uses: actions/upload-artifact@v2.2.4
|
|
|
|
with:
|
2021-10-08 17:08:55 +02:00
|
|
|
name: base-mysql_${{ matrix.os }}_${{ matrix.build }})
|
|
|
|
path: base-mysql_${{ matrix.os }}_${{ matrix.build }})
|
2021-10-08 12:23:51 +02:00
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
build_images:
|
|
|
|
timeout-minutes: 70
|
|
|
|
needs: [ "build_base_database", "init_build"]
|
|
|
|
name: Build ${{ matrix.build }} on ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
build: ${{ fromJson(needs.init_build.outputs.components) }}
|
|
|
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
|
|
|
|
|
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
|
|
|
|
- name: Generate tags
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: ${{ env.DOCKER_REPOSITORY }}/zabbix-${{ matrix.build }}
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch,prefix=${{ matrix.os }}-
|
|
|
|
type=ref,event=branch,suffix=-${{ matrix.os }}
|
|
|
|
flavor: |
|
|
|
|
latest=false
|
|
|
|
|
|
|
|
- name: Download SHA256 tag for ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }}
|
|
|
|
uses: actions/download-artifact@v2.0.10
|
|
|
|
with:
|
2021-10-08 17:08:55 +02:00
|
|
|
name: base-mysql_${{ matrix.os }}_${{ matrix.build }}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
- name: Retrieve ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }} SHA256 tag
|
|
|
|
id: base_build
|
|
|
|
run: |
|
2021-10-08 17:10:08 +02:00
|
|
|
BASE_TAG=$(cat base-mysql_${{ matrix.os }}_${{ matrix.build }} )
|
2021-10-08 17:08:55 +02:00
|
|
|
BUILD_BASE_IMAGE=${{ env.DOCKER_REPOSITORY }}/zabbix-build-mysql@${BASE_TAG}
|
2021-10-08 12:23:51 +02:00
|
|
|
|
|
|
|
echo ::set-output name=base_tag::${BASE_TAG}
|
|
|
|
echo ::set-output name=base_build_image::${BUILD_BASE_IMAGE}
|
|
|
|
|
|
|
|
- name: Build ${{ matrix.build }}/${{ matrix.os }} and push
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: ./Dockerfiles/${{ matrix.build }}/${{ matrix.os }}
|
|
|
|
file: ./Dockerfiles/${{ matrix.build }}/${{ matrix.os }}/Dockerfile
|
|
|
|
platforms: ${{ steps.platform.outputs.list }}
|
|
|
|
push: false
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
build-args: BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }}
|
|
|
|
labels: |
|
|
|
|
org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
|
|
|
org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
|
|
|
|
|
|
|
- name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|