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
12 changes: 12 additions & 0 deletions .github/workflows/exaforce-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ jobs:
uses: actions/checkout@v4
- name: Bootstrap runner environment (Ubuntu-specific)
run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
# Required for some reason for 1.83
- name: Install Rust toolchain explicitly
run: |
rustup set profile minimal
rustup toolchain install $(grep 'channel' rust-toolchain.toml | cut -d '"' -f 2) --profile minimal
rustup default $(grep 'channel' rust-toolchain.toml | cut -d '"' -f 2)
- name: Bootstrap runner environment (generic)
run: bash scripts/environment/prepare.sh
- name: Build Vector
Expand All @@ -83,6 +89,12 @@ jobs:
uses: actions/checkout@v4
- name: Bootstrap runner environment (Ubuntu-specific)
run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
# Required for some reason for 1.83
- name: Install Rust toolchain explicitly
run: |
rustup set profile minimal
rustup toolchain install $(grep 'channel' rust-toolchain.toml | cut -d '"' -f 2) --profile minimal
rustup default $(grep 'channel' rust-toolchain.toml | cut -d '"' -f 2)
- name: Bootstrap runner environment (generic)
run: bash scripts/environment/prepare.sh
- name: Build Vector
Expand Down
Loading
Loading