From 692d4440f5cbe9e435e2a08f0e973b4ec3a6aaaf Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Sun, 13 Aug 2023 16:59:26 +0200 Subject: [PATCH] Build on ARM64 --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d08ea2..8d6e49a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,15 @@ jobs: TOXENV: ${{ matrix.toxenv }} run: tox -- -v native: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ ubuntu-latest ] + include: + - os: 'ubuntu-latest' + platform: 'linux-amd64' + - os: 'ARM64' # self-hosted + platform: 'linux-arm64' + runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 - name: Set up Python 3.11