Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update actions #535

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- os: windows-latest
clang_version: 16.0.0
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true

Expand Down Expand Up @@ -135,10 +135,12 @@ jobs:
# which is required by our malloc implementation.
if: matrix.os == 'ubuntu-latest' && matrix.clang_version != '10.0.0'

- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4.4.0
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
Expand All @@ -152,7 +154,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true
- name: Install Rust (rustup)
Expand All @@ -175,7 +177,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true
- name: Install Rust
Expand Down