mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-06-12 21:06:43 +02:00
Prepare universal workflow
This commit is contained in:
parent
5c42c7f23d
commit
cc6ad9e02a
723
.github/workflows/images_build_windows.yml
vendored
723
.github/workflows/images_build_windows.yml
vendored
@ -6,55 +6,92 @@ on:
|
|||||||
- published
|
- published
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '5.0'
|
- '[0-9]+.[0-9]+'
|
||||||
- '6.0'
|
|
||||||
- '6.4'
|
|
||||||
- 'trunk'
|
- 'trunk'
|
||||||
paths:
|
paths:
|
||||||
- 'Dockerfiles/*/windows/*'
|
- 'Dockerfiles/*/windows/*'
|
||||||
- '!**/README.md'
|
- '!**/README.md'
|
||||||
- '.github/workflows/images_build_windows.yml'
|
- '.github/workflows/images_build_windows.yml'
|
||||||
|
schedule:
|
||||||
|
- cron: '49 12 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOCKER_REPOSITORY: "zabbix"
|
TRUNK_ONLY_EVENT: ${{ contains(fromJSON('["schedule", "workflow_dispatch2"]'), github.event_name) }}
|
||||||
|
AUTO_PUSH_IMAGES: ${{ vars.AUTO_PUSH_IMAGES }}
|
||||||
|
|
||||||
|
DOCKER_REPOSITORY: ${{ vars.DOCKER_REPOSITORY }}
|
||||||
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
|
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
|
||||||
IMAGE_PREFIX: "zabbix-"
|
TRUNK_GIT_BRANCH: "refs/heads/trunk"
|
||||||
BASE_BUILD_NAME: "build-base"
|
IMAGES_PREFIX: "zabbix-"
|
||||||
COMPONENT_BASE_BUILD_NAME: "build-mysql"
|
|
||||||
AUTO_PUSH_IMAGES: ${{ secrets.AUTO_PUSH_IMAGES }}
|
MSFT_BASE_BUILD_IMAGE: "mcr.microsoft.com/windows/servercore"
|
||||||
|
PWSH_BASE_IMAGE_NAME: "mcr.microsoft.com/powershell"
|
||||||
|
PWSH_BASE_IMAGE_PREFIX: "lts-nanoserver-"
|
||||||
|
|
||||||
|
BASE_IMAGE_NAME: "build-base"
|
||||||
|
BASE_BUILD_IMAGE_NAME: "build-mysql"
|
||||||
|
|
||||||
|
MATRIX_FILE: "build.json"
|
||||||
|
DOCKERFILES_DIRECTORY: "Dockerfiles"
|
||||||
|
|
||||||
|
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
|
||||||
|
IDENITY_REGEX: "https://github.com/zabbix/zabbix-docker/.github/"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
init_build:
|
init_build:
|
||||||
name: Initialize build
|
name: Initialize build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
outputs:
|
outputs:
|
||||||
os: ${{ steps.os.outputs.list }}
|
os: ${{ steps.os.outputs.list }}
|
||||||
components: ${{ steps.components.outputs.list }}
|
components: ${{ steps.components.outputs.list }}
|
||||||
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
|
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
|
||||||
|
current_branch: ${{ steps.branch_info.outputs.current_branch }}
|
||||||
|
sha_short: ${{ steps.branch_info.outputs.sha_short }}
|
||||||
steps:
|
steps:
|
||||||
|
- name: Block egress traffic
|
||||||
|
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
|
||||||
|
with:
|
||||||
|
disable-sudo: true
|
||||||
|
egress-policy: block
|
||||||
|
allowed-endpoints: >
|
||||||
|
github.com:443
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
ref: ${{ env.TRUNK_ONLY_EVENT && env.TRUNK_GIT_BRANCH || '' }}
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
sparse-checkout: ${{ env.MATRIX_FILE }}
|
||||||
|
|
||||||
- name: Check build.json file
|
- name: Check ${{ env.MATRIX_FILE }} file
|
||||||
id: build_exists
|
id: build_exists
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
if [[ ! -f "./build.json" ]]; then
|
if [[ ! -f "$MATRIX_FILE" ]]; then
|
||||||
echo "::error::File build.json is missing"
|
echo "::error::File $MATRIX_FILE is missing"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Prepare Operating System list
|
- name: Prepare Operating System list
|
||||||
id: os
|
id: os
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
os_list=$(jq -r '.["os-windows"] | keys | [ .[] | tostring ] | @json' "./build.json")
|
os_list=$(jq -r '.["os-windows"] | keys | [ .[] | tostring ] | @json' "$MATRIX_FILE")
|
||||||
|
|
||||||
|
echo "::group::Operating System List"
|
||||||
|
echo "$os_list"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "list=$os_list" >> $GITHUB_OUTPUT
|
echo "list=$os_list" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
@ -64,14 +101,21 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
component_list='["agent","agent2"]'
|
component_list='["agent","agent2"]'
|
||||||
|
|
||||||
|
echo "::group::Zabbix Component List"
|
||||||
|
echo "$component_list"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "list=$component_list" >> $GITHUB_OUTPUT
|
echo "list=$component_list" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Get branch info
|
- name: Get branch info
|
||||||
id: branch_info
|
id: branch_info
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
LATEST_BRANCH: ${{ env.LATEST_BRANCH }}
|
||||||
|
github_ref: ${{ env.TRUNK_ONLY_EVENT && env.TRUNK_GIT_BRANCH || github.ref }}
|
||||||
run: |
|
run: |
|
||||||
github_ref="${{ github.ref }}"
|
|
||||||
result=false
|
result=false
|
||||||
|
sha_short=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
if [[ "$github_ref" == "refs/tags/"* ]]; then
|
if [[ "$github_ref" == "refs/tags/"* ]]; then
|
||||||
github_ref=${github_ref%.*}
|
github_ref=${github_ref%.*}
|
||||||
@ -79,324 +123,659 @@ jobs:
|
|||||||
|
|
||||||
github_ref=${github_ref##*/}
|
github_ref=${github_ref##*/}
|
||||||
|
|
||||||
if [[ "$github_ref" == "${{ env.LATEST_BRANCH }}" ]]; then
|
if [[ "$github_ref" == "$LATEST_BRANCH" ]]; then
|
||||||
result=true
|
result=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "::group::Branch data"
|
||||||
|
echo "is_default_branch - $result"
|
||||||
|
echo "current_branch - $github_ref"
|
||||||
|
echo "sha_short - $sha_short"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "is_default_branch=$result" >> $GITHUB_OUTPUT
|
echo "is_default_branch=$result" >> $GITHUB_OUTPUT
|
||||||
|
echo "current_branch=$github_ref" >> $GITHUB_OUTPUT
|
||||||
|
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
build_base:
|
build_base:
|
||||||
timeout-minutes: 70
|
|
||||||
name: Build ${{ matrix.component }} base on ${{ matrix.os }}
|
name: Build ${{ matrix.component }} base on ${{ matrix.os }}
|
||||||
needs: init_build
|
needs: init_build
|
||||||
env:
|
runs-on: ${{ matrix.os }}
|
||||||
BASE_BUILD_ARTIFACT_FILE_SUFFIX: "_${{ matrix.os }}_${{ matrix.component }}"
|
timeout-minutes: 70
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
||||||
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
ref: ${{ env.TRUNK_ONLY_EVENT && env.TRUNK_GIT_BRANCH || '' }}
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Install cosign
|
||||||
run: |
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
with:
|
||||||
if (-not $?) {throw "Failed"}
|
cosign-release: 'v2.2.3'
|
||||||
|
|
||||||
- name: Base OS tag
|
- name: Check cosign version
|
||||||
|
run: cosign version
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Base Windows OS tag
|
||||||
id: base_os_tag
|
id: base_os_tag
|
||||||
|
env:
|
||||||
|
MATRIX_OS: ${{ matrix.os }}
|
||||||
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
$os_tag=$(Get-Content -Path $Env:MATRIX_FILE | ConvertFrom-Json).'os-windows'."$Env:MATRIX_OS"
|
||||||
|
|
||||||
|
echo "::group::Base Microsoft Windows OS tag"
|
||||||
|
echo "$os_tag"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.BASE_BUILD_NAME }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGES_PREFIX }}${{ env.BASE_IMAGE_NAME }}
|
||||||
|
context: ${{ env.TRUNK_ONLY_EVENT && 'git' || '' }}
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}},prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=semver,pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
type=ref,event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
||||||
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest,prefix=${{ matrix.component }}-
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest,prefix=${{ matrix.component }}-
|
||||||
type=raw,enable=${{ needs.init_build.outputs.is_default_branch == 'true' }},value=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
type=raw,enable=${{ (needs.init_build.outputs.current_branch != 'trunk') && (needs.init_build.outputs.is_default_branch == 'true') }},value=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
- name: Build image
|
- name: Build and push image
|
||||||
id: docker_build
|
id: docker_build
|
||||||
|
env:
|
||||||
|
DOCKERFILES_DIRECTORY: ${{ env.DOCKERFILES_DIRECTORY }}
|
||||||
|
BASE_BUILD_IMAGE: ${{ env.MSFT_BASE_BUILD_IMAGE }}
|
||||||
|
BASE_IMAGE_NAME: ${{ env.BASE_IMAGE_NAME }}
|
||||||
|
MATRIX_COMPONENT: ${{ matrix.component }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
BASE_OS_TAG: ${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
|
LABEL_REVISION: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||||
|
LABEL_CREATED: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||||
|
AUTO_PUSH_IMAGES: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\'
|
echo "::group::Docker version"
|
||||||
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
docker version
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "::group::Docker info"
|
||||||
|
docker info
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
$context="$Env:DOCKERFILES_DIRECTORY\$Env:BASE_IMAGE_NAME\windows\"
|
||||||
|
$dockerfile= $context + 'Dockerfile.' + $Env:MATRIX_COMPONENT
|
||||||
|
$base_os_image= $Env:BASE_BUILD_IMAGE + ':' + $Env:BASE_OS_TAG
|
||||||
# Can not build on GitHub due existing symlink. Must be removed before build process
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
||||||
|
|
||||||
echo "docker build --file=$dockerfile $tags $context"
|
echo "::group::Image tags"
|
||||||
docker build --label org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }} `
|
echo "$Env:TAGS"
|
||||||
--label org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }} `
|
echo "::endgroup::"
|
||||||
--build-arg=BUILD_BASE_IMAGE=mcr.microsoft.com/windows/servercore:${{ steps.base_os_tag.outputs.os_tag }} `
|
echo "::group::Pull base image"
|
||||||
|
docker pull $base_os_image
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Build Image"
|
||||||
|
Write-Host @"
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_os_image
|
||||||
|
--file=$dockerfile
|
||||||
|
$tags
|
||||||
|
$context
|
||||||
|
"@
|
||||||
|
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION `
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED `
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_os_image `
|
||||||
--file=$dockerfile `
|
--file=$dockerfile `
|
||||||
$tags `
|
$tags `
|
||||||
$context
|
$context
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Push image
|
echo "::group::Publish Image"
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if ( $Env:AUTO_PUSH_IMAGES -eq 'true' ) {
|
||||||
run: |
|
Foreach ($tag in $tags_array) {
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "docker image push $tag"
|
||||||
|
docker image push $tag
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
}
|
||||||
|
|
||||||
Foreach ($tag in $tags_array) {
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
||||||
echo "docker image push $tag"
|
|
||||||
docker image push $tag
|
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from RepoDigests"
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .Id}}")
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from Id"
|
||||||
|
}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Digest"
|
||||||
|
echo "$digest"
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "digest=$digest" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Sign the images with GitHub OIDC Token
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
run: |
|
||||||
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
|
$tag_list=@()
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($tag in $tags_array) {
|
||||||
|
$tag_name=$tag.Split(":")[0]
|
||||||
|
$tag_list+="$tag_name@$Env:DIGEST"
|
||||||
|
}
|
||||||
|
echo "::group::Images to sign"
|
||||||
|
echo "$tag_list"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Signing"
|
||||||
|
echo "cosign sign --yes $tag_list"
|
||||||
|
cosign sign --yes $tag_list
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
|
CACHE_FILE_NAME: ${{ env.BASE_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
run: |
|
run: |
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "::group::Image digest"
|
||||||
|
echo "$Env:DIGEST"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
echo "::group::Cache file name"
|
||||||
if (-not $?) {throw "Failed"}
|
echo "$Env:CACHE_FILE_NAME"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo $digest
|
$Env:DIGEST | Set-Content -Path $Env:CACHE_FILE_NAME
|
||||||
$digest | Set-Content -Path ${{ env.BASE_BUILD_NAME }}${{ env.BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
|
||||||
|
|
||||||
- name: Upload SHA256 tag
|
- name: Cache image digest
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
uses: actions/cache@v4
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: ${{ env.BASE_BUILD_NAME }}${{ env.BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
path: ${{ env.BASE_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
path: ${{ env.BASE_BUILD_NAME }}${{ env.BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
key: ${{ env.BASE_IMAGE_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Logout from DockerHub
|
|
||||||
run: |
|
|
||||||
docker logout
|
|
||||||
if (-not $?) {throw "Failed"}
|
|
||||||
|
|
||||||
build_components:
|
build_components:
|
||||||
timeout-minutes: 70
|
|
||||||
needs: [ "build_base", "init_build"]
|
|
||||||
name: Build ${{ matrix.component }} sources on ${{ matrix.os }}
|
name: Build ${{ matrix.component }} sources on ${{ matrix.os }}
|
||||||
env:
|
needs: [ "build_base", "init_build"]
|
||||||
BASE_BUILD_ARTIFACT_FILE_SUFFIX: "_${{ matrix.os }}_${{ matrix.component }}"
|
runs-on: ${{ matrix.os }}
|
||||||
COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX: "_${{ matrix.os }}_${{ matrix.component }}"
|
timeout-minutes: 70
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
||||||
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ env.TRUNK_ONLY_EVENT && env.TRUNK_GIT_BRANCH || '' }}
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: Install cosign
|
||||||
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
||||||
|
with:
|
||||||
|
cosign-release: 'v2.2.3'
|
||||||
|
|
||||||
|
- name: Check cosign version
|
||||||
|
run: cosign version
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
run: |
|
uses: docker/login-action@v3
|
||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
with:
|
||||||
if (-not $?) {throw "Failed"}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Base OS tag
|
- name: Base OS tag
|
||||||
id: base_os_tag
|
id: base_os_tag
|
||||||
|
env:
|
||||||
|
MATRIX_OS: ${{ matrix.os }}
|
||||||
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
$os_tag=$(Get-Content -Path $Env:MATRIX_FILE | ConvertFrom-Json).'os-windows'."$Env:MATRIX_OS"
|
||||||
|
|
||||||
|
echo "::group::Base Windows OS tag"
|
||||||
|
echo "$os_tag"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.COMPONENT_BASE_BUILD_NAME }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGES_PREFIX }}${{ env.BASE_BUILD_IMAGE_NAME }}
|
||||||
|
context: ${{ env.TRUNK_ONLY_EVENT && 'git' || '' }}
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}},prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=semver,pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
type=ref,event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
||||||
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest,prefix=${{ matrix.component }}-
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest,prefix=${{ matrix.component }}-
|
||||||
type=raw,enable=${{ needs.init_build.outputs.is_default_branch == 'true' }},value=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
type=raw,enable=${{ (needs.init_build.outputs.current_branch != 'trunk') && (needs.init_build.outputs.is_default_branch == 'true') }},value=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
- name: Download SHA256 tag build-base:${{ matrix.os }}
|
- name: Download SHA256 tag of ${{ env.BASE_IMAGE_NAME }}:${{ matrix.os }}
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.BASE_BUILD_NAME }}${{ env.BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
path: ${{ env.BASE_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
|
key: ${{ env.BASE_IMAGE_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
- name: Retrieve ${{ env.BASE_BUILD_NAME }}:${{ matrix.os }} SHA256 tag
|
- name: Retrieve ${{ env.BASE_IMAGE_NAME }}:${{ matrix.os }} SHA256 tag
|
||||||
id: base_build
|
id: base_build
|
||||||
|
env:
|
||||||
|
BASE_IMAGE_NAME: ${{ env.BASE_IMAGE_NAME }}
|
||||||
|
MATRIX_OS: ${{ matrix.os }}
|
||||||
|
MATRIX_COMPONENT: ${{ matrix.component }}
|
||||||
|
DOCKER_REPOSITORY: ${{ env.DOCKER_REPOSITORY }}
|
||||||
|
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
|
||||||
run: |
|
run: |
|
||||||
$base_tag = Get-Content ${{ env.BASE_BUILD_NAME }}${{ env.BASE_BUILD_ARTIFACT_FILE_SUFFIX }} -Raw
|
$base_image_file=$Env:BASE_IMAGE_NAME + '_' + $Env:MATRIX_OS + '_' + $Env:MATRIX_COMPONENT
|
||||||
$build_base_image="${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.BASE_BUILD_NAME }}@" + $base_tag
|
$base_tag = Get-Content $base_image_file -Raw
|
||||||
|
$build_base_image="$Env:DOCKER_REPOSITORY/$Env:IMAGES_PREFIX$Env:BASE_IMAGE_NAME@" + $base_tag
|
||||||
|
|
||||||
echo "base_tag=$base_tag" >> $Env:GITHUB_OUTPUT
|
echo "::group::Base image Info"
|
||||||
echo "base_build_image=$build_base_image" >> $Env:GITHUB_OUTPUT
|
echo "base_tag=$base_tag"
|
||||||
|
echo "base_build_image=$build_base_image"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Build image
|
echo "base_tag=$base_tag" >> $Env:GITHUB_OUTPUT
|
||||||
|
echo "base_build_image=$build_base_image" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Verify ${{ env.BASE_IMAGE_NAME }}:${{ matrix.os }} cosign
|
||||||
|
env:
|
||||||
|
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
|
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
||||||
|
IDENITY_REGEX: ${{ env.IDENITY_REGEX }}
|
||||||
|
run: |
|
||||||
|
cosign verify `
|
||||||
|
--certificate-oidc-issuer-regexp "$Env:OIDC_ISSUER" `
|
||||||
|
--certificate-identity-regexp "$Env:IDENITY_REGEX" `
|
||||||
|
"$Env:BASE_IMAGE"
|
||||||
|
|
||||||
|
- name: Build and push image
|
||||||
id: docker_build
|
id: docker_build
|
||||||
|
env:
|
||||||
|
DOCKERFILES_DIRECTORY: ${{ env.DOCKERFILES_DIRECTORY }}
|
||||||
|
BASE_BUILD_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
|
BASE_BUILD_IMAGE_NAME: ${{ env.BASE_BUILD_IMAGE_NAME }}
|
||||||
|
BASE_BUILD_OS_TAG: ${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
|
MATRIX_COMPONENT: ${{ matrix.component }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
LABEL_REVISION: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||||
|
LABEL_CREATED: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||||
|
AUTO_PUSH_IMAGES: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ env.COMPONENT_BASE_BUILD_NAME }}\windows\'
|
echo "::group::Docker version"
|
||||||
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
docker version
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "::group::Docker info"
|
||||||
|
docker info
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
$context="$Env:DOCKERFILES_DIRECTORY\$Env:BASE_BUILD_IMAGE_NAME\windows\"
|
||||||
|
$dockerfile= $context + 'Dockerfile.' + $Env:MATRIX_COMPONENT
|
||||||
|
$base_build_image= $Env:BASE_BUILD_IMAGE
|
||||||
# Can not build on GitHub due existing symlink. Must be removed before build process
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
||||||
|
|
||||||
echo "docker build --file=$dockerfile $tags $context"
|
echo "::group::Image tags"
|
||||||
docker build --label org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }} `
|
echo "$Env:TAGS"
|
||||||
--label org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }} `
|
echo "::endgroup::"
|
||||||
|
echo "::group::Pull base image"
|
||||||
|
docker pull $base_build_image
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Build Image"
|
||||||
|
Write-Host @"
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_build_image
|
||||||
|
--file=$dockerfile
|
||||||
|
$tags
|
||||||
|
$context
|
||||||
|
"@
|
||||||
|
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION `
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED `
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_build_image `
|
||||||
--file=$dockerfile `
|
--file=$dockerfile `
|
||||||
--build-arg=BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }} `
|
|
||||||
$tags `
|
$tags `
|
||||||
$context
|
$context
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Push image
|
echo "::group::Publish Image"
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if ( $Env:AUTO_PUSH_IMAGES -eq 'true' ) {
|
||||||
run: |
|
Foreach ($tag in $tags_array) {
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "docker image push $tag"
|
||||||
|
docker image push $tag
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
}
|
||||||
|
|
||||||
Foreach ($tag in $tags_array) {
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
||||||
echo "docker image push $tag"
|
|
||||||
docker image push $tag
|
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from RepoDigests"
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .Id}}")
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from Id"
|
||||||
|
}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Digest"
|
||||||
|
echo "$digest"
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "digest=$digest" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Sign the images with GitHub OIDC Token
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
run: |
|
||||||
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
|
$tag_list=@()
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($tag in $tags_array) {
|
||||||
|
$tag_name=$tag.Split(":")[0]
|
||||||
|
$tag_list+="$tag_name@$Env:DIGEST"
|
||||||
|
}
|
||||||
|
echo "::group::Images to sign"
|
||||||
|
echo "$tag_list"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Signing"
|
||||||
|
echo "cosign sign --yes $tag_list"
|
||||||
|
cosign sign --yes $tag_list
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
|
CACHE_FILE_NAME: ${{ env.BASE_BUILD_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
run: |
|
run: |
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "::group::Image digest"
|
||||||
|
echo "$Env:DIGEST"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
echo "::group::Cache file name"
|
||||||
if (-not $?) {throw "Failed"}
|
echo "$Env:CACHE_FILE_NAME"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo $digest
|
$Env:DIGEST | Set-Content -Path $Env:CACHE_FILE_NAME
|
||||||
$digest | Set-Content -Path ${{ env.COMPONENT_BASE_BUILD_NAME }}${{ env.COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
|
||||||
|
|
||||||
- name: Upload SHA256 tag
|
- name: Cache image digest
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
uses: actions/cache@v4
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: ${{ env.COMPONENT_BASE_BUILD_NAME }}${{ env.COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
path: ${{ env.BASE_BUILD_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
path: ${{ env.COMPONENT_BASE_BUILD_NAME }}${{ env.COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
key: ${{ env.BASE_BUILD_IMAGE_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Logout from DockerHub
|
|
||||||
run: |
|
|
||||||
docker logout
|
|
||||||
if (-not $?) {throw "Failed"}
|
|
||||||
|
|
||||||
build_images:
|
build_images:
|
||||||
timeout-minutes: 70
|
|
||||||
needs: [ "build_components", "init_build"]
|
|
||||||
name: Build ${{ matrix.component }} on ${{ matrix.os }}
|
name: Build ${{ matrix.component }} on ${{ matrix.os }}
|
||||||
env:
|
needs: [ "build_components", "init_build"]
|
||||||
COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX: "_${{ matrix.os }}_${{ matrix.component }}"
|
runs-on: ${{ matrix.os }}
|
||||||
|
timeout-minutes: 70
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
os: ${{ fromJson(needs.init_build.outputs.os) }}
|
||||||
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
component: ${{ fromJson(needs.init_build.outputs.components) }}
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ env.TRUNK_ONLY_EVENT && env.TRUNK_GIT_BRANCH || '' }}
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: Install cosign
|
||||||
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
||||||
|
with:
|
||||||
|
cosign-release: 'v2.2.3'
|
||||||
|
|
||||||
|
- name: Check cosign version
|
||||||
|
run: cosign version
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
run: |
|
uses: docker/login-action@v3
|
||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
with:
|
||||||
if (-not $?) {throw "Failed"}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Base OS tag
|
- name: Base OS tag
|
||||||
id: base_os_tag
|
id: base_os_tag
|
||||||
|
env:
|
||||||
|
MATRIX_OS: ${{ matrix.os }}
|
||||||
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
$os_tag=$(Get-Content -Path $Env:MATRIX_FILE | ConvertFrom-Json).'os-windows'."$Env:MATRIX_OS"
|
||||||
|
|
||||||
|
echo "::group::Base OS tag"
|
||||||
|
echo "$os_tag"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
echo "os_tag=$os_tag" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ matrix.component }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGES_PREFIX }}${{ matrix.component }}
|
||||||
|
context: ${{ env.TRUNK_ONLY_EVENT && 'git' || '' }}
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}},prefix=${{ steps.base_os_tag.outputs.os_tag }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},prefix=${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=semver,pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }}
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},suffix=-${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
type=ref,event=branch,prefix=${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,prefix=${{ steps.base_os_tag.outputs.os_tag }}-,suffix=-latest
|
||||||
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}-latest
|
||||||
type=raw,enable=${{ needs.init_build.outputs.is_default_branch == 'true' }},value=${{ steps.base_os_tag.outputs.os_tag }}-latest
|
type=raw,enable=${{ (needs.init_build.outputs.current_branch != 'trunk') && (needs.init_build.outputs.is_default_branch == 'true') }},value=${{ steps.base_os_tag.outputs.os_tag }}-latest
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,prefix=${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
- name: Download SHA256 tag for ${{ env.COMPONENT_BASE_BUILD_NAME }}:${{ matrix.os }}
|
- name: Download SHA256 tag of ${{ env.BASE_BUILD_IMAGE_NAME }}:${{ matrix.os }}
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.COMPONENT_BASE_BUILD_NAME }}${{ env.COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX }}
|
path: ${{ env.BASE_BUILD_IMAGE_NAME }}_${{ matrix.os }}_${{ matrix.component }}
|
||||||
|
key: ${{ env.BASE_BUILD_IMAGE_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
- name: ${{ env.COMPONENT_BASE_BUILD_NAME }}:${{ matrix.os }} SHA256 tag
|
- name: Retrieve ${{ env.BASE_BUILD_IMAGE_NAME }}:${{ matrix.os }} SHA256 tag
|
||||||
id: base_build
|
id: base_build
|
||||||
|
env:
|
||||||
|
BASE_BUILD_IMAGE_NAME: ${{ env.BASE_BUILD_IMAGE_NAME }}
|
||||||
|
MATRIX_OS: ${{ matrix.os }}
|
||||||
|
MATRIX_COMPONENT: ${{ matrix.component }}
|
||||||
|
DOCKER_REPOSITORY: ${{ env.DOCKER_REPOSITORY }}
|
||||||
|
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
|
||||||
run: |
|
run: |
|
||||||
$base_tag = Get-Content ${{ env.COMPONENT_BASE_BUILD_NAME }}${{ env.COMPONENT_BASE_BUILD_ARTIFACT_FILE_SUFFIX }} -Raw
|
$base_image_file=$Env:BASE_BUILD_IMAGE_NAME + '_' + $Env:MATRIX_OS + '_' + $Env:MATRIX_COMPONENT
|
||||||
$build_base_image="${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.COMPONENT_BASE_BUILD_NAME }}@" + $base_tag
|
$base_tag = Get-Content $base_image_file -Raw
|
||||||
|
$build_base_image="$Env:DOCKER_REPOSITORY/$Env:IMAGES_PREFIX$Env:BASE_BUILD_IMAGE_NAME@" + $base_tag
|
||||||
|
|
||||||
echo "base_tag=$base_tag" >> $Env:GITHUB_OUTPUT
|
echo "::group::Base image Info"
|
||||||
echo "base_build_image=$build_base_image" >> $Env:GITHUB_OUTPUT
|
echo "base_tag=$base_tag"
|
||||||
|
echo "base_build_image=$build_base_image"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Build image
|
echo "base_tag=$base_tag" >> $Env:GITHUB_OUTPUT
|
||||||
|
echo "base_build_image=$build_base_image" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Verify ${{ env.BASE_BUILD_IMAGE_NAME }}:${{ matrix.os }} cosign
|
||||||
|
env:
|
||||||
|
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
|
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
||||||
|
IDENITY_REGEX: ${{ env.IDENITY_REGEX }}
|
||||||
|
run: |
|
||||||
|
cosign verify `
|
||||||
|
--certificate-oidc-issuer-regexp "$Env:OIDC_ISSUER" `
|
||||||
|
--certificate-identity-regexp "$Env:IDENITY_REGEX" `
|
||||||
|
"$Env:BASE_IMAGE"
|
||||||
|
|
||||||
|
- name: Build and push image
|
||||||
id: docker_build
|
id: docker_build
|
||||||
|
env:
|
||||||
|
DOCKERFILES_DIRECTORY: ${{ env.DOCKERFILES_DIRECTORY }}
|
||||||
|
BASE_BUILD_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
|
BASE_BUILD_IMAGE_NAME: ${{ env.BASE_BUILD_IMAGE_NAME }}
|
||||||
|
MATRIX_COMPONENT: ${{ matrix.component }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
BASE_BUILD_OS_TAG: ${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
|
LABEL_REVISION: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||||
|
LABEL_CREATED: ${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||||
|
PWSH_BASE_IMAGE_NAME: ${{ env.PWSH_BASE_IMAGE_NAME }}
|
||||||
|
PWSH_BASE_IMAGE_PREFIX: ${{ env.PWSH_BASE_IMAGE_PREFIX }}
|
||||||
|
AUTO_PUSH_IMAGES: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ matrix.component }}\windows\'
|
echo "::group::Docker version"
|
||||||
|
docker version
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "::group::Docker info"
|
||||||
|
docker info
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
$context="$Env:DOCKERFILES_DIRECTORY\$Env:MATRIX_COMPONENT\windows\"
|
||||||
$dockerfile= $context + 'Dockerfile'
|
$dockerfile= $context + 'Dockerfile'
|
||||||
|
$base_build_image= $Env:BASE_BUILD_IMAGE
|
||||||
# Can not build on GitHub due existing symlink. Must be removed before build process
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
||||||
|
|
||||||
# PowerShell images based on LTSC 2019 and LTSC 2016 do not have "ltsc" prefix
|
# PowerShell images based on LTSC 2019 and LTSC 2016 do not have "ltsc" prefix
|
||||||
$os_tag_suffix='${{ steps.base_os_tag.outputs.os_tag }}'
|
$os_tag_suffix=$Env:BASE_BUILD_OS_TAG
|
||||||
$os_tag_suffix=$os_tag_suffix -replace "ltsc2019",'1809'
|
$os_tag_suffix=$os_tag_suffix -replace "ltsc2019",'1809'
|
||||||
|
$base_image=$Env:PWSH_BASE_IMAGE_NAME + ':' + $Env:PWSH_BASE_IMAGE_PREFIX + $os_tag_suffix
|
||||||
|
|
||||||
echo "docker build --file=$dockerfile $tags $context"
|
echo "::group::Image tags"
|
||||||
docker build --label org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }} `
|
echo "$Env:TAGS"
|
||||||
--label org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }} `
|
echo "::endgroup::"
|
||||||
|
echo "::group::Pull build base image"
|
||||||
|
docker pull $base_build_image
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "::group::Pull Powershell base image"
|
||||||
|
docker pull $base_image
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Build Image"
|
||||||
|
Write-Host @"
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_build_image
|
||||||
|
--build-arg=BASE_IMAGE=$base_image
|
||||||
|
--file=$dockerfile
|
||||||
|
$tags
|
||||||
|
$context
|
||||||
|
"@
|
||||||
|
|
||||||
|
docker build --label org.opencontainers.image.revision=$Env:LABEL_REVISION `
|
||||||
|
--label org.opencontainers.image.created=$Env:LABEL_CREATED `
|
||||||
|
--build-arg=BUILD_BASE_IMAGE=$base_build_image `
|
||||||
|
--build-arg=BASE_IMAGE=$base_image `
|
||||||
--file=$dockerfile `
|
--file=$dockerfile `
|
||||||
--build-arg=BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }} `
|
|
||||||
--build-arg=BASE_IMAGE=mcr.microsoft.com/powershell:lts-nanoserver-$os_tag_suffix `
|
|
||||||
$tags `
|
$tags `
|
||||||
$context
|
$context
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Push image
|
echo "::group::Publish Image"
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if ( $Env:AUTO_PUSH_IMAGES -eq 'true' ) {
|
||||||
run: |
|
Foreach ($tag in $tags_array) {
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "docker image push $tag"
|
||||||
|
docker image push $tag
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
}
|
||||||
|
|
||||||
Foreach ($tag in $tags_array) {
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
||||||
echo "docker image push $tag"
|
|
||||||
docker image push $tag
|
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from RepoDigests"
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$digest=$(docker inspect $tags_array[0] --format "{{ index .Id}}")
|
||||||
|
if (-not $?) {throw "Failed"}
|
||||||
|
echo "Image digest got from Id"
|
||||||
|
}
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Digest"
|
||||||
|
echo "$digest"
|
||||||
|
echo "::endgroup::"
|
||||||
|
echo "digest=$digest" >> $Env:GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Sign the images with GitHub OIDC Token
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
|
run: |
|
||||||
|
$tags_array=$( "$Env:TAGS".Split("`n") )
|
||||||
|
$tag_list=@()
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($tag in $tags_array) {
|
||||||
|
$tag_name=$tag.Split(":")[0]
|
||||||
|
$tag_list+="$tag_name@$Env:DIGEST"
|
||||||
|
}
|
||||||
|
echo "::group::Images to sign"
|
||||||
|
echo "$tag_list"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Signing"
|
||||||
|
echo "cosign sign --yes $tag_list"
|
||||||
|
cosign sign --yes $tag_list
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES }}
|
if: ${{ env.AUTO_PUSH_IMAGES }}
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
run: |
|
run: |
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
echo "::group::Image digest"
|
||||||
|
echo "$Env:DIGEST"
|
||||||
$digest=$(docker inspect $tags_array[0] --format "{{ index .RepoDigests 0}}").Split('@')[-1]
|
echo "::endgroup::"
|
||||||
if (-not $?) {throw "Failed"}
|
|
||||||
|
|
||||||
echo $digest
|
|
||||||
|
|
||||||
- name: Logout from DockerHub
|
|
||||||
run: |
|
|
||||||
docker logout
|
|
||||||
if (-not $?) {throw "Failed"}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user