File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
actions/install-dependencies Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,18 @@ runs:
26
26
mkdir -p ${{ inputs.destination }}/bin
27
27
git clone --branch 0.0.125-bindings https://github.com/lightningdevkit/rust-lightning ${{ inputs.destination }}/rust-lightning
28
28
git clone --branch 0.0.125 https://github.com/lightningdevkit/ldk-c-bindings ${{ inputs.destination }}/ldk-c-bindings
29
+ - name : Configure default Rust toolchain
30
+ shell : bash
31
+ run : |
32
+ rustup install 1.73.0
33
+ rustup default 1.73.0
29
34
- name : Install Rust, required targets
30
35
if : ${{ inputs.configureRustNightly == 'true' }}
31
36
shell : bash
32
37
run : |
33
- rustup toolchain install nightly-2022-05-13
38
+ rustup toolchain install nightly-2022-06-24
34
39
rustup target add aarch64-apple-darwin aarch64-apple-ios x86_64-apple-ios
35
- rustup component add rust-src --toolchain nightly-2022-05-13-x86_64 -apple-darwin
40
+ rustup component add rust-src --toolchain nightly-2022-06-24-aarch64 -apple-darwin
36
41
- name : Load Cache
37
42
if : ${{ inputs.configureRustNightly == 'true' }}
38
43
uses : actions/cache@v3
Original file line number Diff line number Diff line change 33
33
sudo apt-get update
34
34
# sudo apt-get -y upgrade
35
35
sudo apt-get -y install cargo lld git g++ clang curl
36
+ rustup install 1.73.0
37
+ rustup default 1.73.0
38
+ - name : Print updated environment details
39
+ run : |
40
+ set -x
41
+ rustup --version
42
+ clang --version
43
+ clang --print-resource-dir
44
+ ls -ll "$(clang -print-resource-dir)"
45
+ ls -ll "$(clang -print-resource-dir)/lib/linux"
36
46
- name : Install Dependencies
37
47
uses : ./.github/actions/install-dependencies
38
48
with :
You can’t perform that action at this time.
0 commit comments