File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 17
17
shell : bash
18
18
- name : Setup MSBuild.exe
19
19
20
- - name : build Release
21
- run : msbuild ccextractor.sln /p:Configuration=Release-Full
20
+ - name : Install llvm and clang
21
+ uses : egor-tensin/setup-clang@v1
22
+ with :
23
+ version : latest
24
+ platform : x86
25
+ - uses : actions-rs/toolchain@v1
26
+ with :
27
+ toolchain : stable
28
+ override : true
29
+ target : i686-pc-windows-msvc
30
+ - name : Install Win 10 SDK
31
+ uses : ilammy/msvc-dev-cmd@v1
32
+ - name : build Release-Full
33
+ env :
34
+ LIBCLANG_PATH : " C:\\ Program Files\\ LLVM\\ lib"
35
+ LLVM_CONFIG_PATH : " C:\\ Program Files\\ LLVM\\ bin\\ llvm-config"
36
+ CARGO_TARGET_DIR : " ..\\ ..\\ windows"
37
+ BINDGEN_EXTRA_CLANG_ARGS : -fmsc-version=0
38
+ run : msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=Win32
22
39
working-directory : ./windows
23
40
- name : Copy files to directory for installer
24
41
run : mkdir installer; cp ./Release-Full/ccextractorwinfull.exe ./installer; cp ./Release-Full/*.dll ./installer
You can’t perform that action at this time.
0 commit comments