File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 7
7
env :
8
8
BUILD_TYPE : RelWithDebInfo
9
9
BACKTRACE_SUBMIT_TOKEN : ${{ secrets.BACKTRACE_SUBMIT_TOKEN }}
10
+ VCPKG_MSVC_TOOLSET_VERSION : 14.34.31933
10
11
11
12
concurrency :
12
13
group : ' vlink'
@@ -47,23 +48,21 @@ jobs:
47
48
working-directory : C:/vtslink/client/out
48
49
run : ' if (test-path install) { remove-item -r install }'
49
50
51
+ - name : Remove previous cmake cache
52
+ working-directory : C:/vtslink/client/out/build
53
+ run : ' if (test-path CMakeCache.txt) { remove-item CMakeCache.txt }'
54
+
50
55
- name : Configure CMake
51
56
working-directory : C:/vtslink/client
52
57
run : cmake -G Ninja -B C:/vtslink/client/out/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=C:/vtslink/client/out/install
53
- env :
54
- VCPKG_MSVC_TOOLSET_VERSION : 14.34.31933
55
58
56
59
- name : Build
57
60
working-directory : C:/vtslink/client
58
61
run : cmake --build C:/vtslink/client/out/build --target VTSLink -j $NUMBER_OF_PROCESSORS
59
- env :
60
- VCPKG_MSVC_TOOLSET_VERSION : 14.34.31933
61
62
62
63
- name : Install
63
64
working-directory : C:/vtslink/client
64
65
run : cmake --build C:/vtslink/client/out/build --config ${{env.BUILD_TYPE}} --target install -j $NUMBER_OF_PROCESSORS
65
- env :
66
- VCPKG_MSVC_TOOLSET_VERSION : 14.34.31933
67
66
68
67
- name : Remove previous install binary
69
68
working-directory : C:/vtslink/client/out/install/bin
You can’t perform that action at this time.
0 commit comments