Skip to content

Commit

Permalink
Do not run aarch64 Linux tests by default
Browse files Browse the repository at this point in the history
The Fedora tests take very long. I can run them before a release.
Also, I develop the Linux version on aarch64, anyway, so usually
it is fine.
  • Loading branch information
gaborcsardi committed Aug 27, 2023
1 parent d69b55e commit bc411d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
options:
- 'yes'
- 'no'
default: 'yes'
default: 'no'
inpmacos:
description: |
Build macOS
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
fi
linux-build-aarch64:
if: ${{ github.event.inputs.inplinuxaarch64 == '' || github.event.inputs.inplinuxaarch64 == 'yes' }}
if: ${{ github.event.inputs.inplinuxaarch64 == 'yes' }}
runs-on: [linux-arm64]
name: Linux build aaarch
env:
Expand Down

0 comments on commit bc411d8

Please sign in to comment.