Skip to content

Commit

Permalink
CI: unique upload names given immutability
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston authored and bnavigator committed Sep 4, 2024
1 parent a1418cf commit c47b63f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/slycot-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,9 @@ jobs:
- name: Save wheel
uses: actions/upload-artifact@v4
with:
name: slycot-wheels
name: slycot-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.bla_vendor }}
path: slycot-wheels
retention-days: 5

build-conda:
name: Build conda, ${{ matrix.os }}
Expand Down Expand Up @@ -178,8 +179,9 @@ jobs:
- name: Save to local conda pkg channel
uses: actions/upload-artifact@v4
with:
name: slycot-conda-pkgs
name: slycot-conda-pkgs-${{ matrix.os }}-${{ matrix.python }}
path: slycot-conda-pkgs
retention-days: 5

create-wheel-test-matrix:
name: Create wheel test matrix
Expand All @@ -189,6 +191,11 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Merge artifacts
uses: actions/upload-artifact/merge@v4
with:
name: slycot-wheels
pattern: slycot-wheels-*
- name: Checkout Slycot
uses: actions/checkout@v3
- name: Download wheels (if any)
Expand All @@ -207,6 +214,11 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Merge artifacts
uses: actions/upload-artifact/merge@v4
with:
name: slycot-conda-pkgs
pattern: slycot-conda-pkgs-*
- name: Checkout Slycot
uses: actions/checkout@v3
- name: Download conda packages
Expand Down

0 comments on commit c47b63f

Please sign in to comment.