Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
RUSTDOCFLAGS: -Dwarnings
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
- name: Set up Rust
run: |
rustup toolchain install $(awk -F'"' '/channel/{print $2}' rust-toolchain.toml) --profile minimal --no-self-update --component rustfmt,clippy --target x86_64-unknown-linux-gnu
Expand All @@ -47,7 +47,7 @@ jobs:
sudo apt install -y iperf3
- uses: Swatinem/rust-cache@v2
- name: Cache custom out directories
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target/*/build/litebox_runner_linux_userland-*/out
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
RUSTFLAGS: -Dwarnings
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- run: sudo apt update && sudo apt install -y gcc-multilib
- name: Set up Rust
run: |
Expand All @@ -95,7 +95,7 @@ jobs:
sudo ./litebox_platform_linux_userland/scripts/tun-setup.sh
- uses: Swatinem/rust-cache@v2
- name: Cache custom out directories
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target/*/build/litebox_runner_linux_userland-*/out
Expand All @@ -115,7 +115,7 @@ jobs:
RUSTFLAGS: -Dwarnings
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
# LVBS requires a nightly toolchain because:
# 1. It uses a custom target (x86_64_vtl1.json) for bare-metal VTL1 kernel development
# 2. The custom target requires `-Z build-std` to build core/alloc from source
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
sudo ./litebox_platform_linux_userland/scripts/tun-setup.sh
- uses: Swatinem/rust-cache@v2
- name: Cache custom out directories
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target/*/build/litebox_runner_linux_userland-*/out
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
RUSTDOCFLAGS: -Dwarnings
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Rust
run: |
rustup toolchain install $(awk -F'"' '/channel/{print $2}' rust-toolchain.toml) --profile minimal --no-self-update --component rustfmt,clippy --target x86_64-pc-windows-msvc
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
RUSTFLAGS: -Dwarnings
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Rust
run: |
RUST_CHANNEL=$(awk -F'"' '/channel/{print $2}' litebox_runner_snp/rust-toolchain.toml)
Expand All @@ -221,7 +221,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Rust
run: |
rustup toolchain install $(awk -F'"' '/channel/{print $2}' rust-toolchain.toml) --profile minimal --no-self-update --target x86_64-unknown-none
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# If you do not check out your code, Copilot will do this for you.
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Rust
run: |
rustup toolchain install $(awk -F'"' '/channel/{print $2}' rust-toolchain.toml) --profile minimal --no-self-update --component rustfmt,clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "This PR does not target the 'main' branch. Exiting."
exit 1
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Ensure that the main branch is fetched
run: git fetch origin main:main
- name: Set up Rust
Expand Down