Skip to content

Commit

Permalink
chore: test arm64 with qemu
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwyles committed Jun 13, 2024
1 parent c136830 commit 1fe74d8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ewyles-test-qemu.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test the Mattermost Package on arm64 with qemu

on:
push:
branches:
- ewyles/test-qemu

permissions:
contents: read

jobs:
test-qemu:
runs-on: uds-ubuntu-arm64-4-core
name: Test QEMU ${{ matrix.flavor }} ${{ matrix.architecture }}

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

- name: Environment setup
uses: defenseunicorns/uds-common/.github/actions/setup@4cea6c8858b9f4db3a3624a6fc046db77e1f4eaa # v0.5.0
with:
registry1Username: ${{ secrets.IRON_BANK_ROBOT_USERNAME }}
registry1Password: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }}
ghToken: ${{ secrets.GITHUB_TOKEN }}

- name: Test Package
run: UDS_ARCHITECTURE=arm64 uds run test-package --set FLAVOR=upstream

- name: Debug Output
if: ${{ always() }}
uses: defenseunicorns/uds-common/.github/actions/debug-output@4cea6c8858b9f4db3a3624a6fc046db77e1f4eaa # v0.5.0

- name: Save logs
if: always()
uses: defenseunicorns/uds-common/.github/actions/save-logs@4cea6c8858b9f4db3a3624a6fc046db77e1f4eaa # v0.5.0
with:
suffix: ${{ matrix.flavor }}-${{ matrix.architecture }}-${{ github.run_id }}-${{ github.run_attempt }}

0 comments on commit 1fe74d8

Please sign in to comment.