-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,8 +137,10 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
with: | ||
# Upload the sysroot folder. Give it a name according to the OS it was built for. | ||
name: ${{ format( 'sysroot-{0}.tgz', matrix.os) }} | ||
# Upload the sysroot folder. To avoid action erros, we give it a unique | ||
# name using the OS it was built for and the Clang version it was built | ||
# with. | ||
name: ${{ format( 'sysroot-{0}-clang-{1}.tgz', matrix.os, matrix.clang_version) }} | ||
path: sysroot | ||
|
||
# Disable the headerstest job for now, while WASI transitions from the | ||
|