We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 490b0d9 commit dfb2700Copy full SHA for dfb2700
1 file changed
.github/workflows/build.yml
@@ -53,15 +53,19 @@ jobs:
53
set_env('BUILD_VERSION', buildVersion)
54
set_env('RELEASE_VERSION', releaseVersion)
55
56
- - name: Install nightly Rust
+ - name: Build Rust
57
run: |
58
- rustup toolchain install nightly --profile complete
59
- rustup default nightly
+ git clone https://github.com/mpvkit/rust.git
+ cd rust
60
+ ./x check
61
+ ./x build --stage 2
62
- rustc -vV
63
+ rustup toolchain link stage0 build/host/stage0-sysroot
64
+ rustup toolchain link stage1 build/host/stage1
65
+ rustup toolchain link stage2 build/host/stage2
66
+ rustc +stage2 -vV
67
+ rustup default stage2
68
which rustc
- rustc --print target-list|grep vision
- rustc --print target-list|grep tvos
69
70
- name: Install cargo-c
71
0 commit comments