Chore: Bump versions (#905) #370
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arm64 Build Test | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: | |
- v* | |
workflow_dispatch: { } | |
pull_request: | |
branches: | |
- main | |
- release-* | |
env: | |
# Common versions | |
GO_VERSION: '1.22.0' | |
permissions: | |
contents: read | |
jobs: | |
detect-noop: | |
runs-on: ubuntu-22.04 | |
outputs: | |
noop: ${{ steps.noop.outputs.should_skip }} | |
steps: | |
- name: Detect No-op Changes | |
id: noop | |
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg"]' | |
do_not_skip: '["workflow_dispatch", "schedule", "push"]' | |
continue-on-error: true | |
arm64-build-test: | |
runs-on: ubuntu-22.04 | |
needs: detect-noop | |
if: needs.detect-noop.outputs.noop != 'true' | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@6ccd57f4c5d15bdc2fef309bd9fb6cc9db2ef1c6 | |
with: | |
submodules: true | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 | |
- name: Build linux/arm64 image | |
id: docker_build_2 | |
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c | |
with: | |
context: ./ | |
build-args: | | |
GOPROXY=https://proxy.golang.org | |
file: ./Dockerfile | |
platforms: linux/arm64 | |
push: false | |
tags: oamdev/velaux:latest |