From 6649c75cb8038b9bcb7cd37319da0d2b8358753c Mon Sep 17 00:00:00 2001 From: quintenvandamme Date: Fri, 3 May 2024 22:48:51 +0200 Subject: [PATCH] chore: Update test.yml to include QEMU setup for arm64 platform --- .github/workflows/test.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e62283..a6bc028 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,13 +12,21 @@ on: jobs: Linux_arm64: runs-on: ubuntu-latest - container: - image: arm64v8/python:latest - platform: linux/arm64 steps: - - name: Checkout code + - name: checkout uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + with: + platforms: arm64 + + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.11' + check-latest: true - name: Install desktop-file-utils run: sudo apt-get install -y desktop-file-utils @@ -31,4 +39,4 @@ jobs: with: artifacts: "./out/*" allowUpdates: true - tag: "continuous-build" + tag: "continious-build" \ No newline at end of file