We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f407f96 commit 116e124Copy full SHA for 116e124
2 files changed
.github/scripts/build-wheel.sh
@@ -105,7 +105,7 @@ print(f'ecc_py smoke test passed: {len(required)} bindings verified')
105
"
106
107
# Checksums
108
-sha256sum "$repair_out"/*.whl > dist/wheel/SHA256SUMS
+(cd "$repair_out" && sha256sum *.whl) > dist/wheel/SHA256SUMS
109
110
echo "[build-wheel] done"
111
echo "[build-wheel] raw wheels: $raw_out"
.github/workflows/ci.yml
@@ -2,6 +2,13 @@ name: CI
2
3
on:
4
pull_request:
5
+ paths:
6
+ - 'src/**'
7
+ - 'cmake/**'
8
+ - 'CMakeLists.txt'
9
+ - 'pyproject.toml'
10
+ - 'build.sh'
11
+ - '.github/**'
12
push:
13
branches: [main]
14
0 commit comments