File tree Expand file tree Collapse file tree 1 file changed +35
-1
lines changed
Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change 1212 BUILD_CONFIGURATION : Release
1313
1414jobs :
15- build :
15+ build-x86_64 :
1616 runs-on : windows-2019
1717
1818 steps :
3030 - name : Fetch all tags
3131 run : git fetch --tags --prune --unshallow --force
3232
33+ - name : Configure CMake
34+ # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
35+ # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
36+ run : cmake -Bbuild -DCMAKE_BUILD_TYPE=${{env.BUILD_CONFIGURATION}}
37+
38+ - name : Build nim-demo
39+ # Build your program with the given configuration
40+ run : cmake --build build --config ${{env.BUILD_CONFIGURATION}}
41+
42+ - name : Build nim-demo installer
43+ run : cmake --build build --config ${{env.BUILD_CONFIGURATION}} --target installer
44+
45+ - uses : actions/upload-artifact@v4
46+ with :
47+ name : PC_Demo_Setup
48+ path : bin/NIM_Demo_Setup*.exe
49+ build-x86 :
50+ runs-on : windows-2019
51+
52+ steps :
53+ - uses : actions/checkout@v2
54+
55+ - name : Add MSBuild to PATH
56+ uses : microsoft/setup-msbuild@v1
57+
58+ - name : Install Conan
59+ id : conan
60+ uses : turtlebrowser/get-conan@main
61+ with :
62+ version : 1.65.0
63+
64+ - name : Fetch all tags
65+ run : git fetch --tags --prune --unshallow --force
66+
3367 - name : Configure CMake
3468 # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
3569 # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
You can’t perform that action at this time.
0 commit comments