mirror of https://github.com/kivy/kivy.git
Ensure `benchmarks` artifact names are unique, as required by `actions/upload-artifacts@v4` [build wheel] (#8710)
* Ensure benchmarks artifact names are unique, as required by actions/upload-artifacts@v4 * Always perform benchmarks
This commit is contained in:
parent
04b0fab8c2
commit
203f5501ff
|
@ -168,14 +168,13 @@ jobs:
|
||||||
source .ci/ubuntu_ci.sh
|
source .ci/ubuntu_ci.sh
|
||||||
test_kivy_install
|
test_kivy_install
|
||||||
- name: Test Kivy benchmarks
|
- name: Test Kivy benchmarks
|
||||||
if: matrix.python == '3.x' && (github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag'))
|
|
||||||
run: |
|
run: |
|
||||||
source .ci/ubuntu_ci.sh
|
source .ci/ubuntu_ci.sh
|
||||||
test_kivy_benchmark
|
test_kivy_benchmark
|
||||||
- name: Upload benchmarks as artifact
|
- name: Upload benchmarks as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: benchmarks
|
name: benchmarks-manylinux-wheels-python-${{ matrix.python }}
|
||||||
path: .benchmarks-kivy
|
path: .benchmarks-kivy
|
||||||
|
|
||||||
sdist_test:
|
sdist_test:
|
||||||
|
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
- name: Upload benchmarks as artifact
|
- name: Upload benchmarks as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: benchmarks
|
name: benchmarks-ubuntu-unittests-python-3.x
|
||||||
path: .benchmarks-kivy
|
path: .benchmarks-kivy
|
||||||
|
|
||||||
gen_docs:
|
gen_docs:
|
||||||
|
|
|
@ -31,12 +31,11 @@ jobs:
|
||||||
. .\.ci\windows_ci.ps1
|
. .\.ci\windows_ci.ps1
|
||||||
Test-kivy
|
Test-kivy
|
||||||
- name: Test Kivy benchmarks
|
- name: Test Kivy benchmarks
|
||||||
if: matrix.python == '3.9' && matrix.arch == 'x64'
|
|
||||||
run: |
|
run: |
|
||||||
. .\.ci\windows_ci.ps1
|
. .\.ci\windows_ci.ps1
|
||||||
Test-kivy-benchmark
|
Test-kivy-benchmark
|
||||||
- name: Upload benchmarks as artifact
|
- name: Upload benchmarks as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: benchmarks
|
name: benchmarks-windows-unittests-python-${{ matrix.python }}-${{ matrix.arch }}
|
||||||
path: .benchmarks-kivy
|
path: .benchmarks-kivy
|
||||||
|
|
|
@ -129,14 +129,13 @@ jobs:
|
||||||
. .\.ci\windows_ci.ps1
|
. .\.ci\windows_ci.ps1
|
||||||
Test-kivy-installed
|
Test-kivy-installed
|
||||||
- name: Test Kivy benchmarks
|
- 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: |
|
run: |
|
||||||
. .\.ci\windows_ci.ps1
|
. .\.ci\windows_ci.ps1
|
||||||
Test-kivy-benchmark
|
Test-kivy-benchmark
|
||||||
- name: Upload benchmarks as artifact
|
- name: Upload benchmarks as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: benchmarks
|
name: benchmarks-windows-wheels-python-${{ matrix.python }}-${{ matrix.arch }}
|
||||||
path: .benchmarks-kivy
|
path: .benchmarks-kivy
|
||||||
|
|
||||||
windows_sdist_test:
|
windows_sdist_test:
|
||||||
|
|
Loading…
Reference in New Issue