Skip to content

Commit

Permalink
add first test of arm64 Github runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Honeycutt committed Dec 9, 2024
1 parent 139d4a9 commit 0fcc8e4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- run: sudo apt-get update && sudo apt-get install cargo libgtk-3-dev libhidapi-dev libudev-dev patchelf
- uses: actions/checkout@v4
- run: cd linux && ./build.py x86_64 $RELEASE
- run: cd linux && ./build.py $RELEASE
- uses: actions/upload-artifact@v4
with:
if-no-files-found: error
Expand All @@ -43,12 +43,12 @@ jobs:
- run: chmod +x keyboard-configurator-x86_64.AppImage
- run: xvfb-run ./keyboard-configurator-x86_64.AppImage --help-gtk

linux-arm65:
linux-arm64:
runs-on: ubuntu-20.04
architecture: arm64
steps:
- run: sudo apt-get update && sudo apt-get install cargo libgtk-3-dev libhidapi-dev libudev-dev patchelf
- uses: actions/checkout@v4
- run: cd linux && ./build.py aarch64 $RELEASE
- run: cd linux && ./build.py --arm64 $RELEASE
- uses: actions/upload-artifact@v4
with:
if-no-files-found: error
Expand All @@ -57,6 +57,7 @@ jobs:

linux-arm64-test:
runs-on: ubuntu-latest
architecture: arm64
needs: linux-arm64
steps:
- run: sudo apt-get install xvfb libfuse2
Expand Down

0 comments on commit 0fcc8e4

Please sign in to comment.