mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 21:40:01 +08:00
build: Use buildx for multi-platform images
This commit is contained in:
parent
0ac93a8c7c
commit
465e832c32
97
.github/workflows/build.yml
vendored
97
.github/workflows/build.yml
vendored
@ -26,30 +26,38 @@ jobs:
|
|||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
|
||||||
-
|
-
|
||||||
name: Build the Docker image
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
-
|
||||||
|
name: Prepare Docker build
|
||||||
|
id: prepare
|
||||||
run: |
|
run: |
|
||||||
docker build . \
|
|
||||||
--file Dockerfile \
|
PLATFORMS="linux/amd64,linux/arm64"
|
||||||
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
|
VERSION="${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
||||||
--build-arg "VERSION_ARG=${{ vars.MAJOR }}.${{ vars.MINOR }}" \
|
|
||||||
--build-arg "DATE_ARG=${{ github.event.repository.updated_at }}" \
|
TAGS=()
|
||||||
--tag "${{ github.repository }}:latest" \
|
TAGS=("${{ github.repository }}:latest")
|
||||||
--tag "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" \
|
TAGS+=("${{ github.repository }}:${VERSION}")
|
||||||
--tag "ghcr.io/${{ github.repository }}:latest" \
|
TAGS+=("ghcr.io/${{ github.repository }}:latest")
|
||||||
--tag "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
|
||||||
|
|
||||||
|
echo "tags=${TAGS[@]}" >> $GITHUB_OUTPUT
|
||||||
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
||||||
|
echo "docker_platforms=${PLATFORMS}" >> $GITHUB_OUTPUT
|
||||||
|
echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
|
||||||
-
|
-
|
||||||
name: Login to Docker Hub
|
name: Login into Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
-
|
|
||||||
name: Push to DockerHub
|
|
||||||
run: |
|
|
||||||
docker push "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" &&\
|
|
||||||
docker push "${{ github.repository }}:latest"
|
|
||||||
-
|
-
|
||||||
name: Login to GitHub Container Registry
|
name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
@ -58,26 +66,32 @@ jobs:
|
|||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Push to Github Container Registry
|
name: Build Docker image
|
||||||
run: |
|
run: |
|
||||||
docker push "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" && \
|
|
||||||
docker push "ghcr.io/${{ github.repository }}:latest"
|
|
||||||
|
|
||||||
release:
|
TAGS=(${{ steps.prepare.outputs.tags }})
|
||||||
needs: build
|
|
||||||
name: Release
|
echo "Build date: ${{ steps.prepare.outputs.build_date }}"
|
||||||
runs-on: ubuntu-latest
|
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}"
|
||||||
permissions:
|
echo "Tags: ${{ steps.prepare.outputs.tags }}"
|
||||||
contents: write
|
|
||||||
steps:
|
docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
|
||||||
- uses: actions/checkout@v3
|
--output "type=image,push=true" \
|
||||||
with:
|
--progress=plain \
|
||||||
fetch-depth: 0
|
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
|
||||||
|
--build-arg "VERSION_ARG=${{ steps.prepare.outputs.version }}" \
|
||||||
|
--build-arg "DATE_ARG=${{ steps.prepare.outputs.build_date }}" \
|
||||||
|
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
|
||||||
|
$(printf "%s" "${TAGS[@]/#/ --tag }" ) .
|
||||||
|
-
|
||||||
|
name: Clear Docker credentials
|
||||||
|
run: |
|
||||||
|
rm -f ${HOME}/.docker/config.json
|
||||||
-
|
-
|
||||||
name: Get previous tag
|
name: Get previous tag
|
||||||
id: previousTag
|
id: previousTag
|
||||||
run: |
|
run: |
|
||||||
name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -2 | head -1)
|
name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -1)
|
||||||
echo "previousTag: $name"
|
echo "previousTag: $name"
|
||||||
echo "previousTag=$name" >> $GITHUB_ENV
|
echo "previousTag=$name" >> $GITHUB_ENV
|
||||||
-
|
-
|
||||||
@ -89,35 +103,26 @@ jobs:
|
|||||||
fromTag: ${{ github.ref_name }}
|
fromTag: ${{ github.ref_name }}
|
||||||
toTag: ${{ env.previousTag }}
|
toTag: ${{ env.previousTag }}
|
||||||
writeToFile: false
|
writeToFile: false
|
||||||
|
reverseOrder: true
|
||||||
|
includeInvalidCommits: true
|
||||||
|
excludeTypes: "docs,build,chore"
|
||||||
-
|
-
|
||||||
name: Create a release
|
name: Create a release
|
||||||
uses: action-pack/github-release@v2
|
uses: action-pack/github-release@v2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tag: "v${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
tag: "v${{ steps.prepare.outputs.version }}"
|
||||||
title: "v${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
title: "v${{ steps.prepare.outputs.version }}"
|
||||||
body: |
|
body: |
|
||||||
## Changelog :eyes:
|
|
||||||
|
|
||||||
${{ steps.changelog.outputs.changes }}
|
${{ steps.changelog.outputs.changes }}
|
||||||
|
|
||||||
**Full Changelog**: https://github.com/${{ github.repository }}/compare//${{ env.previousTag }}...v${{ vars.MAJOR }}.${{ vars.MINOR }}
|
**Full Changelog**: https://github.com/${{ github.repository }}/compare//${{ env.previousTag }}...v${{ steps.prepare.outputs.version }}
|
||||||
-
|
-
|
||||||
name: Increment version variable
|
name: Increment version variable
|
||||||
uses: action-pack/bump@v2
|
uses: action-pack/bump@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
||||||
|
|
||||||
mirror:
|
|
||||||
name: Mirror
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
-
|
-
|
||||||
name: Push to Gitlab mirror
|
name: Push to Gitlab mirror
|
||||||
uses: action-pack/gitlab-sync@v3
|
uses: action-pack/gitlab-sync@v3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user