Skip to content

Commit 181ae3c

Browse files
committed
What is up with the macos build!?
1 parent 897dcab commit 181ae3c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
target: ${{ matrix.platform.target }}
4949
args: --release --out dist --find-interpreter
50-
sccache: 'true'
50+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
5151
manylinux: auto
5252
working-directory: ./utiles-pyo3
5353
- name: Upload wheels
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
target: ${{ matrix.platform.target }}
9292
args: --release --out dist --find-interpreter
93-
sccache: 'true'
93+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
9494
manylinux: musllinux_1_2
9595
working-directory: ./utiles-pyo3
9696
- name: Upload wheels
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
target: ${{ matrix.platform.target }}
123123
args: --release --out dist --find-interpreter
124-
sccache: 'true'
124+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
125125
working-directory: ./utiles-pyo3
126126
- name: Upload wheels
127127
uses: actions/upload-artifact@v4
@@ -164,7 +164,7 @@ jobs:
164164
with:
165165
target: ${{ matrix.platform.target }}
166166
args: --release --out dist --find-interpreter
167-
sccache: 'true'
167+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
168168
working-directory: ./utiles-pyo3
169169
- name: Upload wheels
170170
uses: actions/upload-artifact@v4

crates/utiles-core/src/fns.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//! Core util(e)ity functions for working with web mercator tiles, bounding boxes, et al
22
#![deny(clippy::missing_const_for_fn)]
3+
34
use std::f64::consts::PI;
45
use std::num::FpCategory;
56

0 commit comments

Comments
 (0)