Skip to content

Commit

Permalink
cargo update, initial_delay, python3.14 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ijl committed Oct 24, 2024
1 parent 8912627 commit f3c2d10
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,12 @@ jobs:
},
]
python: [
{ interpreter: 'python3.13', package: 'python3.13' },
{ interpreter: 'python3.12', package: 'python3.12' },
{ interpreter: 'python3.11', package: 'python3.11' },
{ interpreter: 'python3.10', package: 'python3.10' },
{ interpreter: 'python3.9', package: 'python3.9' },
{ interpreter: 'python3.14', package: 'python3.14', publish: false },
{ interpreter: 'python3.13', package: 'python3.13', publish: true },
{ interpreter: 'python3.12', package: 'python3.12', publish: true },
{ interpreter: 'python3.11', package: 'python3.11', publish: true },
{ interpreter: 'python3.10', package: 'python3.10', publish: true },
{ interpreter: 'python3.9', package: 'python3.9', publish: true },
]
env:
PYTHON: "${{ matrix.python.interpreter }}"
Expand All @@ -101,10 +102,11 @@ jobs:
- uses: actions/checkout@v4

- name: setup-qemu-container
uses: sandervocke/setup-qemu-container@v1
uses: sandervocke/setup-qemu-container@v1.2.0
with:
container: registry.fedoraproject.org/fedora:42
arch: ${{ matrix.arch.tag }}
initial_delay: 2s
podman_args: "-v .:/orjson -v /tmp:/tmp --workdir /orjson"

- name: setup-shell-wrapper
Expand Down Expand Up @@ -141,7 +143,7 @@ jobs:
cp ${CARGO_TARGET_DIR}/wheels/orjson*.whl dist
- name: Store wheels
if: "startsWith(github.ref, 'refs/tags/')"
if: "startsWith(github.ref, 'refs/tags/') && matrix.python.publish == true"
uses: actions/upload-artifact@v4
with:
name: orjson_manylinux_2_17_amd64_${{ matrix.python.interpreter }}
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f3c2d10

Please sign in to comment.