-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (71 loc) · 2.3 KB
/
build-win64-x86.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Build win64_x86
on:
workflow_dispatch:
env:
BUILD_TYPE: Release
CMAKE_GENERATOR: Ninja
defaults:
run:
shell: msys2 {0}
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: 'MINGW64'
cache: true
install: >-
make
git
pacboy: >-
cmake:p
ninja:p
clang:p
clang-tools-extra:p
toolchain:p
gtest:p
qt6:p
gettext:p
qt6-tools:p
SDL2:p
cpr:p
spdlog:p
openssl:p
nsis:p
- run: ln -s "${MSYSTEM_PREFIX}/bin/qtpaths-qt6.exe" "${MSYSTEM_PREFIX}/bin/qtpaths.exe"
- run: git config --global core.autocrlf input
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure CMake
run: cmake -B build -G "${{env.CMAKE_GENERATOR}}" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build build
- name: Run unit tests
working-directory: build
run: ctest --output-on-failure
- name: Build zip
working-directory: build
run: cpack -G ZIP
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: firelight-zip-win-x64
path: build/firelight-0.1.1-win64.zip
# - name: Prepare artifact
# run: |
# cp /mingw64/bin/SDL2.dll build/
# cp /mingw64/bin/libcrypto-3-x64.dll build/
# ${GITHUB_WORKSPACE}/../Qt/6.6.2/mingw_64/bin/windeployqt build/firelight.exe --compiler-runtime
# - name: Build
# # Build your program with the given configuration
# run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
# - name: Test
# working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# run: ctest -C ${{env.BUILD_TYPE}}