Skip to content

Commit eaccd88

Browse files
Get working build
1 parent 26058ac commit eaccd88

File tree

15 files changed

+1366
-1172
lines changed

15 files changed

+1366
-1172
lines changed

.github/actions/setup-builder/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
run: |
3838
RETRY=("ci/scripts/retry" timeout 120)
3939
echo "Installing ${{ inputs.rust-version }}"
40-
"${RETRY[@]}" rustup toolchain install ${{ inputs.rust-version }}
40+
"${RETRY[@]}" rustup toolchain install ${{ inputs.rust-version }} --no-self-update
4141
"${RETRY[@]}" rustup default ${{ inputs.rust-version }}
4242
"${RETRY[@]}" rustup component add rustfmt
4343
- name: Configure rust runtime env

.github/actions/setup-macos-aarch64-builder/action.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ runs:
3939
- name: Setup Rust toolchain
4040
shell: bash
4141
run: |
42-
rustup update stable
43-
rustup toolchain install stable
42+
rustup toolchain install stable --no-self-update
4443
rustup default stable
4544
rustup component add rustfmt
4645
- name: Setup rust cache

.github/actions/setup-macos-builder/action.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ runs:
3939
- name: Setup Rust toolchain
4040
shell: bash
4141
run: |
42-
rustup update stable
43-
rustup toolchain install stable
42+
rustup toolchain install stable --no-self-update
4443
rustup default stable
4544
rustup component add rustfmt
4645
- name: Configure rust runtime env

.github/actions/setup-rust-runtime/action.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ description: 'Setup Rust Runtime Environment'
2020
runs:
2121
using: "composite"
2222
steps:
23-
- name: Run sccache-cache
24-
uses: mozilla-actions/[email protected]
2523
- name: Configure runtime env
2624
shell: bash
2725
# do not produce debug symbols to keep memory usage down
@@ -31,8 +29,6 @@ runs:
3129
# Set debuginfo=line-tables-only as debuginfo=0 causes immensely slow build
3230
# See for more details: https://github.com/rust-lang/rust/issues/119560
3331
run: |
34-
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
35-
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
3632
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
3733
echo "RUSTFLAGS=-C debuginfo=line-tables-only -C incremental=false" >> $GITHUB_ENV
3834

.github/workflows/audit.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/dependencies.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)