File tree 2 files changed +8
-8
lines changed
.github/actions/setup-builder
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ runs:
28
28
- name : Install Build Dependencies
29
29
shell : bash
30
30
run : |
31
- RETRY="ci/scripts/retry"
32
- "${RETRY}" apt-get update
33
- "${RETRY}" apt-get install -y protobuf-compiler
31
+ RETRY=( "ci/scripts/retry" timeout 120)
32
+ "${RETRY[@] }" apt-get update
33
+ "${RETRY[@] }" apt-get install -y protobuf-compiler
34
34
- name : Setup Rust toolchain
35
35
shell : bash
36
36
# rustfmt is needed for the substrait build script
37
37
run : |
38
- RETRY="ci/scripts/retry"
38
+ RETRY=( "ci/scripts/retry" timeout 120)
39
39
echo "Installing ${{ inputs.rust-version }}"
40
- "${RETRY}" rustup toolchain install ${{ inputs.rust-version }}
41
- "${RETRY}" rustup default ${{ inputs.rust-version }}
42
- "${RETRY}" rustup component add rustfmt
40
+ "${RETRY[@] }" rustup toolchain install ${{ inputs.rust-version }}
41
+ "${RETRY[@] }" rustup default ${{ inputs.rust-version }}
42
+ "${RETRY[@] }" rustup component add rustfmt
43
43
- name : Configure rust runtime env
44
44
uses : ./.github/actions/setup-rust-runtime
45
45
- name : Fixup git permissions
Original file line number Diff line number Diff line change 7
7
" $@ "
8
8
}
9
9
10
- max_retry_time_seconds=$(( 3 * 60 ))
10
+ max_retry_time_seconds=$(( 5 * 60 ))
11
11
retry_delay_seconds=10
12
12
13
13
END=$(( $(date +% s) + ${max_retry_time_seconds} ))
You can’t perform that action at this time.
0 commit comments