We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5850f7d commit d6f643aCopy full SHA for d6f643a
1 file changed
.github/workflows/platforms.yml
@@ -8,6 +8,7 @@ jobs:
8
9
linux:
10
name: Linux - ${{ matrix.arch.name }} - .NET ${{ matrix.dotnet }}
11
+ runs-on: ${{ matrix.arch.runs-on }}
12
13
strategy:
14
fail-fast: false
@@ -18,17 +19,17 @@ jobs:
18
19
runtime: linux-x64
20
platform: linux/amd64
21
qemu: false
22
+ runs-on: ubuntu-latest
23
- name: arm32
24
runtime: linux-arm
25
platform: linux/arm/v7
26
qemu: true
27
28
- name: arm64
29
runtime: linux-arm64
30
platform: linux/arm64/v8
- qemu: false # ← changed to false to use native ARM64 runner
-
- # Conditional runs-on depending on architecture
31
- runs-on: ${{ matrix.arch.name == 'arm64' && 'ubuntu-22.04-arm64' || 'ubuntu-latest' }}
+ qemu: false
32
+ runs-on: ubuntu-22.04-arm64
33
34
steps:
35
- name: Checkout source
0 commit comments