We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddff95f commit e8fff5cCopy full SHA for e8fff5c
.github/workflows/ampere-build-and-release.yaml
@@ -41,6 +41,13 @@ jobs:
41
- name: Build wheel
42
run: CMAKE_ARGS="-DGGML_NATIVE=ON" python -m build --wheel --outdir wheelhouse/
43
44
+ - name: Inspect wheel contents
45
+ run: |
46
+ for whl in wheelhouse/*.whl; do
47
+ echo "=== $(basename $whl) ==="
48
+ python -m zipfile -l "$whl"
49
+ done
50
+
51
- uses: actions/upload-artifact@v4
52
with:
53
name: wheel-py${{ matrix.python-version }}
@@ -49,6 +56,7 @@ jobs:
56
release:
57
name: Release
58
needs: [build_wheels_arm64]
59
+ if: startsWith(github.ref, 'refs/tags/')
60
runs-on: [self-hosted]
61
container:
54
62
image: ubuntu:24.04
0 commit comments