mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
ci: build interop Docker image for pushes to master, and for releases (#4035)
* ci: build interop Docker image for pushes to master, and tag releases * use self-hosted runner to build Docker image * Apply suggestions from code review Co-authored-by: Piotr Galar <piotr.galar@gmail.com> * Update .github/workflows/build-interop-docker.yml Co-authored-by: Piotr Galar <piotr.galar@gmail.com> * build the correct commit * Update .github/workflows/build-interop-docker.yml --------- Co-authored-by: Piotr Galar <piotr.galar@gmail.com>
This commit is contained in:
parent
fe3c4f271d
commit
f689a5d023
2 changed files with 27 additions and 9 deletions
23
.github/workflows/build-interop-docker.yml
vendored
23
.github/workflows/build-interop-docker.yml
vendored
|
@ -1,11 +1,14 @@
|
|||
name: Build interop Docker image
|
||||
on:
|
||||
push:
|
||||
branches: [ interop ]
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
interop:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ fromJSON(vars['DOCKER_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up QEMU
|
||||
|
@ -19,9 +22,23 @@ jobs:
|
|||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: set tag name
|
||||
id: tag
|
||||
# Tagged releases won't be picked up by the interop runner automatically,
|
||||
# but they can be useful when debugging regressions.
|
||||
run: |
|
||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||
echo "tag=${GITHUB_REF#refs/tags/}" | tee -a $GITHUB_OUTPUT;
|
||||
echo "gitref=${GITHUB_REF#refs/tags/}" | tee -a $GITHUB_OUTPUT;
|
||||
else
|
||||
echo 'tag=latest' | tee -a $GITHUB_OUTPUT;
|
||||
echo 'gitref=${{ github.sha }}' | tee -a $GITHUB_OUTPUT;
|
||||
fi
|
||||
- uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: "{{defaultContext}}:interop"
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: martenseemann/quic-go-interop:latest
|
||||
build-args: |
|
||||
GITREF=${{ steps.tag.outputs.gitref }}
|
||||
tags: martenseemann/quic-go-interop:${{ steps.tag.outputs.tag }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue