Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't use Arm runners on forks
  • Loading branch information
diegorusso committed Nov 27, 2024
commit 4be422ec66686fc5d4623c09c2c212bff6edf824
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-aarch64]
os: [ubuntu-24.04]
include:
- os: ubuntu-24.04-aarch64
if: ${{ github.repository_owner != 'python' }}
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2]
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
Expand Down Expand Up @@ -429,7 +432,10 @@ jobs:
if: needs.check_source.outputs.run_tests == 'true'
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-aarch64]
os: [ubuntu-24.04]
include:
- os: ubuntu-24.04-aarch64
if: ${{ github.repository_owner != 'python' }}
env:
OPENSSL_VER: 3.0.15
PYTHONSTRICTEXTENSIONBUILD: 1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,12 @@ jobs:
architecture: aarch64
runner: ubuntu-24.04-aarch64
compiler: gcc
if: ${{ github.repository_owner != 'python' }}
Comment thread
diegorusso marked this conversation as resolved.
Outdated
- target: aarch64-unknown-linux-gnu/clang
architecture: aarch64
runner: ubuntu-24.04-aarch64
compiler: clang
if: ${{ github.repository_owner != 'python' }}
env:
CC: ${{ matrix.compiler }}
steps:
Expand Down