Skip to content

Commit 13728e6

Browse files
skip i686
1 parent aaf48a5 commit 13728e6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/actions/setup-backend/action.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,14 @@ runs:
2323
python-version: ${{ inputs.python-version }}
2424
version: '0.5.24'
2525
cache-suffix: ${{inputs.python-version}}
26+
2627
- name: Install dependencies
2728
shell: bash
2829
run: |
2930
uv sync --frozen --all-extras
31+
3032
- name: Install codecov
3133
shell: bash
3234
run: |
3335
uv tool install codecov-cli --python 3.10
34-
uv tool update-shell
35-
# - name: Configure AWS Credentials
36-
# if: env.skip == '1'
37-
# uses: aws-actions/configure-aws-credentials@v2
38-
# with:
39-
# aws-access-key-id: ${{ inputs.aws-access-key-id }}
40-
# aws-secret-access-key: ${{ inputs.aws-secret-access-key }}
41-
# aws-region: us-west-1
36+
uv tool update-shell

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
name: Build wheels on ${{ matrix.os }}
2020
runs-on: ${{ matrix.os }}
2121
strategy:
22+
fail-fast: false
2223
matrix:
2324
os: [ubuntu-latest, macos-latest]
2425

@@ -43,8 +44,12 @@ jobs:
4344
git branch
4445
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
4546
47+
# TODO: add cbuildwheel cache
4648
- name: Build wheels
47-
run: uv run --frozen cibuildwheel --output-dir dist
49+
uses: pypa/[email protected]
50+
env:
51+
HATCH_BUILD_HOOKS_ENABLE: true
52+
CIBW_SKIP: cp313-macosx_*,*i686*
4853

4954
- uses: actions/upload-artifact@v4
5055
with:

0 commit comments

Comments
 (0)