We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0062f commit 3e339e3Copy full SHA for 3e339e3
.github/workflows/main.yml
@@ -28,6 +28,10 @@ jobs:
28
platform: x64
29
instance: ubuntu-22.04
30
31
+ - category: ubuntu
32
+ platform: arm64
33
+ instance: ubuntu-22.04-arm
34
+
35
- category: macos
36
37
instance: macos-13
@@ -85,7 +89,8 @@ jobs:
85
89
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONHOME=$(python -c 'import sys; print(sys.prefix)')"
86
90
87
91
- name: Embedding tests
88
- if: ${{ matrix.python != '3.13' }}
92
+ # Skip embedded tests for now
93
+ if: false
94
run: dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
95
env:
96
MONO_THREADS_SUSPEND: preemptive # https://github.com/mono/mono/issues/21466
0 commit comments