Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn committed Jan 1, 2024
1 parent 20b0d4a commit 51a00d9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux
path: dist

# Docker with Apple Silicon
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-manylinux-aarch64
path: dist

# ARM7
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-armv7
path: dist

musllinux-x86_64:
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-musllinux-x86_64
path: dist

musllinux-aarch64:
Expand All @@ -111,7 +111,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-musllinux-aarch64
path: dist

windows:
Expand All @@ -130,7 +130,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows
path: dist

macos:
Expand All @@ -149,7 +149,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos
path: dist

release:
Expand All @@ -169,7 +169,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels*
- name: Publish to PyPI
uses: messense/maturin-action@v1
env:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: "benchmark_result_as_md"
name: "benchmark_result_as_md_${{ matrix.python-version }}_${{ matrix.os }}"
path: ${{ steps.gen-benchmark-file-name.outputs.filename }}

Report:
Expand All @@ -85,7 +85,6 @@ jobs:
- name: Download a Build Artifact
uses: actions/download-artifact@v4
with:
name: "benchmark_result_as_md"
path: ""
pattern: "benchmark_result_as_md*"

- run: cat tzfpy_benchmark_*.md > $GITHUB_STEP_SUMMARY

0 comments on commit 51a00d9

Please sign in to comment.