Skip to content

Commit

Permalink
Build releases on ubuntu-latest and macos-13 (which is x86_64)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Oct 12, 2024
1 parent a6b29e2 commit f6c8197
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ on:

jobs:
build_wheels:
runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu, macos]
os: [ubuntu-latest, macos-13]
build: ["cp36-* cp37-* cp38-* cp39-*", "cp310-* cp311-* cp312-*", "cp313-*"]
x64image: [manylinux_2_28]
nametag: [none]

include:
- os: ubuntu
- os: ubuntu-latest
build: "cp38-manylinux_x86_64"
x64image: manylinux2014
nametag: focal
Expand All @@ -27,6 +27,9 @@ jobs:
- name: Checkout pysam
uses: actions/checkout@v4

- name: Check platform is x86_64
run: test "$(uname -m)" = x86_64 || exit 1

- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
env:
Expand Down

0 comments on commit f6c8197

Please sign in to comment.