diff --git a/.github/workflows/manylinux_wheels.yml b/.github/workflows/manylinux_wheels.yml index 0d4627de5..198cc2fd2 100644 --- a/.github/workflows/manylinux_wheels.yml +++ b/.github/workflows/manylinux_wheels.yml @@ -168,14 +168,13 @@ jobs: source .ci/ubuntu_ci.sh test_kivy_install - name: Test Kivy benchmarks - if: matrix.python == '3.x' && (github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag')) run: | source .ci/ubuntu_ci.sh test_kivy_benchmark - name: Upload benchmarks as artifact uses: actions/upload-artifact@v4 with: - name: benchmarks + name: benchmarks-manylinux-wheels-python-${{ matrix.python }} path: .benchmarks-kivy sdist_test: diff --git a/.github/workflows/test_ubuntu_python.yml b/.github/workflows/test_ubuntu_python.yml index 559790e67..61618301f 100644 --- a/.github/workflows/test_ubuntu_python.yml +++ b/.github/workflows/test_ubuntu_python.yml @@ -61,7 +61,7 @@ jobs: - name: Upload benchmarks as artifact uses: actions/upload-artifact@v4 with: - name: benchmarks + name: benchmarks-ubuntu-unittests-python-3.x path: .benchmarks-kivy gen_docs: diff --git a/.github/workflows/test_windows_python.yml b/.github/workflows/test_windows_python.yml index c133a0478..179388101 100644 --- a/.github/workflows/test_windows_python.yml +++ b/.github/workflows/test_windows_python.yml @@ -31,12 +31,11 @@ jobs: . .\.ci\windows_ci.ps1 Test-kivy - name: Test Kivy benchmarks - if: matrix.python == '3.9' && matrix.arch == 'x64' run: | . .\.ci\windows_ci.ps1 Test-kivy-benchmark - name: Upload benchmarks as artifact uses: actions/upload-artifact@v4 with: - name: benchmarks + name: benchmarks-windows-unittests-python-${{ matrix.python }}-${{ matrix.arch }} path: .benchmarks-kivy diff --git a/.github/workflows/windows_wheels.yml b/.github/workflows/windows_wheels.yml index f677cdcb0..47fd29d85 100644 --- a/.github/workflows/windows_wheels.yml +++ b/.github/workflows/windows_wheels.yml @@ -129,14 +129,13 @@ jobs: . .\.ci\windows_ci.ps1 Test-kivy-installed - name: Test Kivy benchmarks - if: matrix.python == '3.x' && matrix.arch == 'x64' && (github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag')) run: | . .\.ci\windows_ci.ps1 Test-kivy-benchmark - name: Upload benchmarks as artifact uses: actions/upload-artifact@v4 with: - name: benchmarks + name: benchmarks-windows-wheels-python-${{ matrix.python }}-${{ matrix.arch }} path: .benchmarks-kivy windows_sdist_test: