File tree 2 files changed +12
-12
lines changed
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -51,19 +51,19 @@ jobs:
51
51
run : |
52
52
export CC=x86_64-w64-mingw32-gcc
53
53
export CXX=x86_64-w64-mingw32-g++
54
- - name : Download and extract prebuilt LLVM (Windows)
54
+ - name : Install latest Rust nightly
55
+ uses : actions-rs/toolchain@v1
56
+ with :
57
+ toolchain : nightly
58
+ override : true
59
+ components : clippy
60
+ - name : Install LLVM and dependencies (Windows)
55
61
if : ${{ matrix.os == 'windows-latest' }}
56
62
shell : bash
57
63
run : |
58
- pacman -S mingw-w64-x86_64-gcc --no-confirm
59
- pacman -S mingw-w64-x86_64-llvm --no-confirm
60
- - name : Download static zlib libraries (Windows)
61
- if : ${{ matrix.os == 'windows-latest' }}
62
- run : |
64
+ C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-gcc --noconfirm
65
+ C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-llvm --noconfirm
63
66
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-zlib --noconfirm
64
- - name : Download zstd library (Windows)
65
- if : ${{ matrix.os == 'windows-latest' }}
66
- run : |
67
67
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-zstd --noconfirm
68
68
- name : Install LLVM and dependencies (macOS)
69
69
if : ${{ matrix.os == 'macos-latest' }}
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ MSYS2 Setup:
23
23
- Download MSYS2
24
24
- Install MSYS2
25
25
- Open the MSYS2 Mingw64 Prompt
26
- - ` pacman -S git --no-confirm `
27
- - ` pacman -S mingw-w64-x86_64-gcc --no-confirm `
28
- - ` pacman -S mingw-w64-x86_64-llvm --no-confirm `
26
+ - ` pacman -S git --noconfirm `
27
+ - ` pacman -S mingw-w64-x86_64-gcc --noconfirm `
28
+ - ` pacman -S mingw-w64-x86_64-llvm --noconfirm `
29
29
- ` git clone https://github.com/IsaacShelton/Adept3x `
30
30
- ` cd Adept3x `
31
31
- ` LLVM_SYS_181_PREFIX=/mingw64 ~/.cargo/bin/cargo +nightly build --release `
You can’t perform that action at this time.
0 commit comments