Skip to content

Commit 022773d

Browse files
Get working build
1 parent a43ce8b commit 022773d

File tree

18 files changed

+1513
-969
lines changed

18 files changed

+1513
-969
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
# rustfmt is needed for the substrait build script
3636
run: |
3737
echo "Installing ${{ inputs.rust-version }}"
38-
rustup toolchain install ${{ inputs.rust-version }}
38+
rustup toolchain install ${{ inputs.rust-version }} --no-self-update
3939
rustup default ${{ inputs.rust-version }}
4040
rustup component add rustfmt
4141
- 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: Configure rust runtime env

.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 & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)