Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- run: |
git clone https://github.com/gi0baro/rewrk.git
cd rewrk && cargo build --release
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: rewrk
path: rewrk/target/release/rewrk
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
python benchmarks.py
- name: upload results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: results-base
path: benchmarks/results/*
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
run: |
python benchmarks.py vs
- name: upload results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: results-vs
path: benchmarks/results/*
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: |
python benchmarks.py vs_ws
- name: upload results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: results-ws
path: benchmarks/results/*
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
BENCHMARK_EXC_PREFIX=${{ github.workspace }}/.venv313/bin ${{ github.workspace }}/.venv313/bin/python benchmarks.py interfaces
mv results/data.json results/py313.json
- name: upload results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: results-pyver
path: benchmarks/results/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks_ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
python external/tfb/loader.py > results/tfb.json
- name: upload results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: results-tfb
path: benchmarks/results/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
container: ${{ matrix.container }}
docker-options: -e CI
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist-${{ matrix.platform || matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux || 'auto' }}-${{ matrix.allocator || 'auto' }}
path: dist
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist-sdist
path: dist
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
container: ${{ matrix.container }}
docker-options: -e CI
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist-${{ matrix.platform || matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux || 'auto' }}-${{ matrix.allocator || 'auto' }}
path: dist
Expand Down