File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -41,20 +41,14 @@ jobs:
41
41
python-version : ${{ matrix.python-version }}
42
42
43
43
# Configure Rust for 32-bit builds
44
+ #
45
+ # NOTE: Refer to install_loader/toolchain.toml for the installed toolchain and target architecture
44
46
# Please use fixed versions of rust so that installs build consistently
45
47
# (So they don't randomly trigger Windows Defender)
48
+ #
49
+ # CACHE NOTE: This action also provides Github Actions caching of rust builds (uses Swatinem/rust-cache internally)
46
50
- name : Install and configure rust for 32-bit builds
47
- uses : actions-rs/toolchain@v1
48
- with :
49
- toolchain : 1.66.0
50
- target : i686-pc-windows-msvc
51
- default : true
52
-
53
- # Caching for Rust
54
- - name : Cache rust builds
55
- uses : Swatinem/rust-cache@v2
56
- with :
57
- workspaces : install_loader
51
+ uses : actions-rust-lang/setup-rust-toolchain@v1
58
52
59
53
# Run Python Deploy Script
60
54
# This also installs and scans .exe with virustotal on Windows (to try prevent .exe virus false positives)
Original file line number Diff line number Diff line change
1
+ [toolchain ]
2
+ channel = " 1.66.0"
3
+ components = [ ]
4
+ targets = [ " i686-pc-windows-msvc" ]
5
+ profile = " minimal"
You can’t perform that action at this time.
0 commit comments