Skip to content
Merged

Bump #73

Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 0 additions & 24 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,30 +29,6 @@ jobs:
- name: Check format
run: cargo fmt --all -- --check

# check:
# name: Check
# needs: [format]
# strategy:
# matrix:
# platform:
# - runner: ubuntu-latest
# target: x86_64
# toolchain: [stable]
# features: [cjk]
# runs-on: ${{ matrix.platform.runner }}
# steps:
# - name: Run checkout
# uses: actions/checkout@v4

# - name: Install toolchain
# uses: dtolnay/rust-toolchain@v1
# with:
# toolchain: ${{ matrix.toolchain }}
# components: rustfmt, clippy

# - name: Run check
# run: cargo check --features "${{ matrix.features }}"

test:
name: Test
needs: [format]
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,30 +32,6 @@ jobs:
- name: Check format
run: cargo fmt --all -- --check

# check:
# name: Check
# needs: [format]
# strategy:
# matrix:
# platform:
# - runner: ubuntu-latest
# target: x86_64
# toolchain: [stable]
# features: [cjk]
# runs-on: ${{ matrix.platform.runner }}
# steps:
# - name: Run checkout
# uses: actions/checkout@v4

# - name: Install toolchain
# uses: dtolnay/rust-toolchain@v1
# with:
# toolchain: ${{ matrix.toolchain }}
# components: rustfmt, clippy

# - name: Run check
# run: cargo check --features "${{ matrix.features }}"

test:
name: Test
needs: [format]
Expand Down
36 changes: 6 additions & 30 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,30 +39,6 @@ jobs:
- name: Check format
run: cargo fmt --all -- --check

# check:
# name: Check
# needs: [format]
# strategy:
# matrix:
# platform:
# - runner: ubuntu-latest
# target: x86_64
# toolchain: [stable]
# features: [cjk]
# runs-on: ${{ matrix.platform.runner }}
# steps:
# - name: Run checkout
# uses: actions/checkout@v4

# - name: Install toolchain
# uses: dtolnay/rust-toolchain@v1
# with:
# toolchain: ${{ matrix.toolchain }}
# components: rustfmt, clippy

# - name: Run check
# run: cargo check --features "${{ matrix.features }}"

test:
name: Test
needs: [format]
Expand Down Expand Up @@ -119,7 +95,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --features=cjk
sccache: 'false'
sccache: "false"
manylinux: auto
before-script-linux: "yum install openssl-devel devtoolset-10-libatomic-devel perl-IPC-Cmd -y"

Expand Down Expand Up @@ -154,7 +130,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --features=cjk
sccache: 'false'
sccache: "false"
manylinux: auto
before-script-linux: "apt-get update && apt-get install libssl-dev pkg-config -y"

Expand Down Expand Up @@ -193,7 +169,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --features=cjk
sccache: 'false'
sccache: "false"
manylinux: musllinux_1_2
before-script-linux: "apt-get update && apt-get install libssl-dev pkg-config -y"

Expand Down Expand Up @@ -229,7 +205,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --features=cjk
sccache: 'false'
sccache: "false"

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -262,7 +238,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --features=cjk
sccache: 'false'
sccache: "false"

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -307,7 +283,7 @@ jobs:
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
with:
subject-path: 'wheels-*/*'
subject-path: "wheels-*/*"

- name: Publish to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
Expand Down
Loading