mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-06-20 09:57:43 +02:00
Updated build script
This commit is contained in:
parent
9534df088a
commit
59c4acf189
10
.github/workflows/images_build.yml
vendored
10
.github/workflows/images_build.yml
vendored
@ -48,14 +48,14 @@ jobs:
|
|||||||
- name: Prepare Operating System list
|
- name: Prepare Operating System list
|
||||||
id: os
|
id: os
|
||||||
run: |
|
run: |
|
||||||
os_list=$(jq -r '.os | keys | [ .[] | tostring ] | @json' "./build.json")
|
os_list=$(jq -r '.["os-linux"] | keys | [ .[] | tostring ] | @json' "./build.json")
|
||||||
|
|
||||||
echo "::set-output name=list::$os_list"
|
echo "::set-output name=list::$os_list"
|
||||||
|
|
||||||
- name: Prepare Platform list
|
- name: Prepare Platform list
|
||||||
id: platform_list
|
id: platform_list
|
||||||
run: |
|
run: |
|
||||||
platform_list=$(jq -r '.os | tostring | @json' "./build.json")
|
platform_list=$(jq -r '.["os-linux"] | tostring | @json' "./build.json")
|
||||||
|
|
||||||
echo "::set-output name=list::$platform_list"
|
echo "::set-output name=list::$platform_list"
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ jobs:
|
|||||||
- name: Prepare Platform list
|
- name: Prepare Platform list
|
||||||
id: platform
|
id: platform
|
||||||
run: |
|
run: |
|
||||||
platform_list=$(jq -r '.os.${{ matrix.os }} | join(",")' "./build.json")
|
platform_list=$(jq -r '.["os-linux"].${{ matrix.os }} | join(",")' "./build.json")
|
||||||
|
|
||||||
echo ::set-output name=list::$platform_list
|
echo ::set-output name=list::$platform_list
|
||||||
|
|
||||||
@ -178,7 +178,7 @@ jobs:
|
|||||||
- name: Prepare Platform list
|
- name: Prepare Platform list
|
||||||
id: platform
|
id: platform
|
||||||
run: |
|
run: |
|
||||||
platform_list=$(jq -r '.os.${{ matrix.os }} | join(",")' "./build.json")
|
platform_list=$(jq -r '.["os-linux"].${{ matrix.os }} | join(",")' "./build.json")
|
||||||
|
|
||||||
echo ::set-output name=list::$platform_list
|
echo ::set-output name=list::$platform_list
|
||||||
|
|
||||||
@ -266,7 +266,7 @@ jobs:
|
|||||||
if [ "${{ matrix.os }}" == "alpine" ] && [ "${{ matrix.build }}" == "web-service" ]; then
|
if [ "${{ matrix.os }}" == "alpine" ] && [ "${{ matrix.build }}" == "web-service" ]; then
|
||||||
platform_list="linux/amd64,linux/arm64"
|
platform_list="linux/amd64,linux/arm64"
|
||||||
else
|
else
|
||||||
platform_list=$(jq -r '.os.${{ matrix.os }} | join(",")' "./build.json")
|
platform_list=$(jq -r '.["os-linux"].${{ matrix.os }} | join(",")' "./build.json")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo ::set-output name=list::$platform_list
|
echo ::set-output name=list::$platform_list
|
||||||
|
38
.github/workflows/images_build_windows.yml
vendored
38
.github/workflows/images_build_windows.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
|||||||
- name: Prepare Operating System list
|
- name: Prepare Operating System list
|
||||||
id: os
|
id: os
|
||||||
run: |
|
run: |
|
||||||
$os_list='["ltsc2022"]'
|
os_list=$(jq -r '.["os-windows"] | keys | [ .[] | tostring ] | @json' ".\build.json")
|
||||||
|
|
||||||
echo "::set-output name=list::$os_list"
|
echo "::set-output name=list::$os_list"
|
||||||
|
|
||||||
@ -74,7 +74,7 @@ jobs:
|
|||||||
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: windows-2022
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2.3.4
|
uses: actions/checkout@v2.3.4
|
||||||
@ -86,14 +86,20 @@ jobs:
|
|||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
|
||||||
|
- name: Base OS tag
|
||||||
|
id: base_os_tag
|
||||||
|
run: |
|
||||||
|
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
||||||
|
echo "::set-output name=os_tag::$os_tag"
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v3
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.BASE_BUILD_NAME }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.BASE_BUILD_NAME }}
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=branch,prefix=${{ matrix.component }}-${{ matrix.os }}-
|
type=ref,event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=ref,event=branch,suffix=-${{ matrix.os }},prefix=${{ matrix.component }}-
|
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
@ -162,7 +168,7 @@ jobs:
|
|||||||
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: windows-2022
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2.3.4
|
uses: actions/checkout@v2.3.4
|
||||||
@ -172,14 +178,20 @@ jobs:
|
|||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
|
||||||
|
- name: Base OS tag
|
||||||
|
id: base_os_tag
|
||||||
|
run: |
|
||||||
|
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
||||||
|
echo "::set-output name=os_tag::$os_tag"
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v3
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.COMPONENT_BASE_BUILD_NAME }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ env.COMPONENT_BASE_BUILD_NAME }}
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=branch,prefix=${{ matrix.component }}-${{ matrix.os }}-
|
type=ref,event=branch,prefix=${{ matrix.component }}-${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=ref,event=branch,suffix=-${{ matrix.os }},prefix=${{ matrix.component }}-
|
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }},prefix=${{ matrix.component }}-
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
@ -262,7 +274,7 @@ jobs:
|
|||||||
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: windows-2022
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.4
|
- uses: actions/checkout@v2.3.4
|
||||||
|
|
||||||
@ -271,14 +283,20 @@ jobs:
|
|||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||||
if (-not $?) {throw "Failed"}
|
if (-not $?) {throw "Failed"}
|
||||||
|
|
||||||
|
- name: Base OS tag
|
||||||
|
id: base_os_tag
|
||||||
|
run: |
|
||||||
|
$os_tag=$(Get-Content -Path .\build.json | ConvertFrom-Json).'os-windows'.'${{ matrix.os }}'
|
||||||
|
echo "::set-output name=os_tag::$os_tag"
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v3
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ matrix.component }}
|
images: ${{ env.DOCKER_REPOSITORY }}/${{ env.IMAGE_PREFIX }}${{ matrix.component }}
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=branch,prefix=${{ matrix.os }}-
|
type=ref,event=branch,prefix=${{ steps.base_os_tag.outputs.os_tag }}-
|
||||||
type=ref,event=branch,suffix=-${{ matrix.os }}
|
type=ref,event=branch,suffix=-${{ steps.base_os_tag.outputs.os_tag }}
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"os": {
|
"os-linux": {
|
||||||
"alpine": [
|
"alpine": [
|
||||||
"linux/amd64",
|
"linux/amd64",
|
||||||
"linux/arm/v6",
|
"linux/arm/v6",
|
||||||
@ -20,6 +20,11 @@
|
|||||||
"linux/arm64"
|
"linux/arm64"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"os-windows": {
|
||||||
|
"windows-2022": "ltsc2022",
|
||||||
|
"windows-2019": "ltsc2019",
|
||||||
|
"windows-2016": "ltsc2016"
|
||||||
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"agent": "build-mysql",
|
"agent": "build-mysql",
|
||||||
"agent2": "build-mysql",
|
"agent2": "build-mysql",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user