Skip to content

Commit

Permalink
Fix maturin sccache option (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn authored Aug 2, 2023
1 parent 7c34fe3 commit da8a853
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
manylinux: auto
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -34,7 +34,7 @@ jobs:
with:
target: aarch64-unknown-linux-gnu
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -51,7 +51,7 @@ jobs:
with:
target: armv7
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
container: messense/manylinux_2_24-cross:armv7
- name: Upload wheels
Expand All @@ -68,7 +68,7 @@ jobs:
with:
target: x86_64
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
manylinux: musllinux_1_1
- name: Upload wheels
Expand All @@ -85,7 +85,7 @@ jobs:
with:
target: aarch64
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
manylinux: musllinux_1_1
- name: Upload wheels
Expand All @@ -101,7 +101,7 @@ jobs:
- uses: messense/maturin-action@v1
with:
command: build
sccache: "true"
sccache: true
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -116,7 +116,7 @@ jobs:
- uses: messense/maturin-action@v1
with:
command: build
sccache: "true"
sccache: true
args: --release -o dist --target universal2-apple-darwin --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit da8a853

Please sign in to comment.