Skip to content

Commit 7ae7998

Browse files
authored
Bump (#78)
* Bump up version to 0.44.0 * Remove musl linux * Publish packages for each feature * Add macos x86_64
1 parent 50ca99b commit 7ae7998

File tree

9 files changed

+304
-198
lines changed

9 files changed

+304
-198
lines changed

.github/workflows/periodic.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ jobs:
1212
matrix:
1313
platform:
1414
- runner: ubuntu-latest
15-
target: x86_64
15+
target: x86_64-unknown-linux-gnu
1616
toolchain: [stable]
17-
features: [cjk]
1817
runs-on: ${{ matrix.platform.runner }}
1918
steps:
2019
- name: Run checkout
@@ -24,6 +23,7 @@ jobs:
2423
uses: dtolnay/rust-toolchain@v1
2524
with:
2625
toolchain: ${{ matrix.toolchain }}
26+
target: ${{ matrix.platform.target }}
2727
components: rustfmt, clippy
2828

2929
- name: Check format
@@ -44,7 +44,6 @@ jobs:
4444
- runner: windows-latest
4545
target: x86_64-pc-windows-msvc
4646
toolchain: [stable]
47-
features: [cjk]
4847
runs-on: ${{ matrix.platform.runner }}
4948
steps:
5049
- name: Run checkout
@@ -58,4 +57,4 @@ jobs:
5857
components: rustfmt, clippy
5958

6059
- name: Run test
61-
run: cargo test --target "${{ matrix.platform.target }}" --features "${{ matrix.features }}"
60+
run: cargo test --target "${{ matrix.platform.target }}" --all-features

.github/workflows/regression.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
matrix:
1616
platform:
1717
- runner: ubuntu-latest
18-
target: x86_64
18+
target: x86_64-unknown-linux-gnu
1919
toolchain: [stable]
20-
features: [cjk]
2120
runs-on: ${{ matrix.platform.runner }}
2221
steps:
2322
- name: Run checkout
@@ -27,6 +26,7 @@ jobs:
2726
uses: dtolnay/rust-toolchain@v1
2827
with:
2928
toolchain: ${{ matrix.toolchain }}
29+
target: ${{ matrix.platform.target }}
3030
components: rustfmt, clippy
3131

3232
- name: Check format
@@ -47,7 +47,6 @@ jobs:
4747
- runner: windows-latest
4848
target: x86_64-pc-windows-msvc
4949
toolchain: [stable]
50-
features: [cjk]
5150
runs-on: ${{ matrix.platform.runner }}
5251
steps:
5352
- name: Run checkout
@@ -61,4 +60,4 @@ jobs:
6160
components: rustfmt, clippy
6261

6362
- name: Run test
64-
run: cargo test --target "${{ matrix.platform.target }}" --features "${{ matrix.features }}"
63+
run: cargo test --target "${{ matrix.platform.target }}" --all-features

0 commit comments

Comments
 (0)