Skip to content

Commit

Permalink
Bump the version of actions/upload-artifact (#3474)
Browse files Browse the repository at this point in the history
* Bump the version of actions/upload-artifact.

* Ensure artifact names are unique.

* To trigger CI.

* Try with commit hash.
  • Loading branch information
xclerc authored Jan 16, 2025
1 parent afb8a55 commit f7b2cbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,22 +282,22 @@ jobs:
run: |
PATH=$GITHUB_WORKSPACE/ocaml-414/_install/bin:$PATH make check_all_arches
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ failure() }} && matrix.os != 'macos-latest'
with:
name: cores
name: cores-${{ github.sha }}
path: /cores

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ failure() }} && matrix.os != 'macos-latest'
with:
name: _build
name: _build-${{ github.sha }}
path: $GITHUB_WORKSPACE/_build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ failure() }} && matrix.os != 'macos-latest'
with:
name: _runtest
name: _runtest-${{ github.sha }}
path: $GITHUB_WORKSPACE/_runtest

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ jobs:
# BUILD_OCAMLPARAM: ${{ matrix.ocamlparam }}
#
# - name: Publish coverage report
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: coverage
# name: coverage-${{ github.sha }}
# path: flambda_backend/_coverage/**
#

0 comments on commit f7b2cbe

Please sign in to comment.