File tree 2 files changed +37
-5
lines changed
2 files changed +37
-5
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,34 @@ jobs:
14
14
with :
15
15
msbuild-architecture : x64
16
16
17
- - name : Build
17
+ - name : Building zlib
18
18
working-directory : ${{env.GITHUB_WORKSPACE}}
19
- # Add additional options to the MSBuild command line here (like platform or verbosity level).
20
- # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
21
- run : all.cmd
19
+ run : zlib.cmd
20
+ shell : cmd
21
+
22
+ - name : Building bzip2
23
+ working-directory : ${{env.GITHUB_WORKSPACE}}
24
+ run : bzip2.cmd
25
+ shell : cmd
26
+
27
+ - name : Building xz
28
+ working-directory : ${{env.GITHUB_WORKSPACE}}
29
+ run : xz.cmd
30
+ shell : cmd
31
+
32
+ - name : Building zstd
33
+ working-directory : ${{env.GITHUB_WORKSPACE}}
34
+ run : zstd.cmd
35
+ shell : cmd
36
+
37
+ - name : Building libarchive
38
+ working-directory : ${{env.GITHUB_WORKSPACE}}
39
+ run : libarchive.cmd
40
+ shell : cmd
41
+
42
+ - name : Print versions
43
+ working-directory : ${{env.GITHUB_WORKSPACE}}
44
+ run : version.cmd
22
45
shell : cmd
23
46
24
47
- name : Release
Original file line number Diff line number Diff line change
1
+ set ROOT = %~dp0
2
+ echo %ROOT%
3
+
1
4
if not exist bzip2 (
2
- git clone --depth=1 --branch 1ea1ac188ad4b9cb662e3f8314673c63df95a589 https://gitlab.com/bzip2/bzip2.git
5
+ git clone https://gitlab.com/bzip2/bzip2.git
6
+ )
7
+
8
+ if exist bzip2 (
9
+ cd bzip2
10
+ git checkout -b temp 1ea1ac188ad4b9cb662e3f8314673c63df95a589
11
+ cd %ROOT%
3
12
)
4
13
5
14
cmake -G " Visual Studio 17 2022" -A x64 --install-prefix %~dp0 stage -S bzip2 -B bzip2_build -D CMAKE_BUILD_TYPE=" Release" -D ENABLE_LIB_ONLY=ON -D ENABLE_SHARED_LIB=OFF -D ENABLE_STATIC_LIB=ON
You can’t perform that action at this time.
0 commit comments