From e62843cf10219d7005d776fc93929a382756cbec Mon Sep 17 00:00:00 2001 From: austinjp Date: Sat, 14 Aug 2021 22:17:27 +0100 Subject: [PATCH] Github actions don't support aarch64/ARM64 architecture :( This is being tracked here: https://github.com/actions/virtual-environments/issues/2552 This action looks interesting, but fails (predictably) with a message about the image not matching the host: https://github.com/uraimo/run-on-arch-action A self-hosted runner (i.e. my personal laptop!) would be possible, but can execute arbitrary code, so I'm not going to do that in a public repo like this one. See https://docs.github.com/en/actions/hosting-your-own-runners/adding-self-hosted-runners --- .github/workflows/wheel_build.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/wheel_build.yml diff --git a/.github/workflows/wheel_build.yml b/.github/workflows/wheel_build.yml deleted file mode 100644 index 41e8000..0000000 --- a/.github/workflows/wheel_build.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: wheel_build - -on: - push: - branches: - - master - - feature-github-wheel-build - -jobs: - build-and-publish: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v1 - with: - python-version: '3.6.9' - - name: Install build dependencies - run: pip install -U 'setuptools>=57.4.0' 'wheel>=0.37.0' 'build>=0.6.0' - - name: Build - run: ~/build.sh