-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (70 loc) · 2.06 KB
/
msys2.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
name: MSYS2
on: push
jobs:
msys2_mingw64:
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: true
install: >-
git
mingw-w64-x86_64-catch
mingw-w64-x86_64-cmake
mingw-w64-x86_64-gcc
mingw-w64-x86_64-glfw
mingw-w64-x86_64-libwebp
mingw-w64-x86_64-make
mingw-w64-x86_64-ninja
mingw-w64-x86_64-pkg-config
- name: Build
run: |
export MSYSTEM=MINGW64
export CXX=g++
export CC=gcc
cd "$GITHUB_WORKSPACE"
mkdir build
cd build
cmake ../
cmake --build . -j2
- name: Tests
run: |
export MSYSTEM=MINGW64
cd "$GITHUB_WORKSPACE"/build
ctest -V
- name: Build with statically linked standard libraries
run: |
export MSYSTEM=MINGW64
export CXX=g++
export CC=gcc
cd "$GITHUB_WORKSPACE"
mkdir build_static_std_libs
cd build_static_std_libs
cmake ../ -DENABLE_LTO=ON -DENABLE_STATIC_STANDARD_LIBRARIES=ON
cmake --build . -j2
- name: Tests of build with statically linked standard libraries
run: |
export MSYSTEM=MINGW64
cd "$GITHUB_WORKSPACE"/build_static_std_libs
ctest -V
- name: Gather build artifacts
run: |
export MSYSTEM=MINGW64
cd "$GITHUB_WORKSPACE"
mkdir artifacts
./ci/copy-dll-dependencies.sh build_static_std_libs/webp-viewer/webp-viewer.exe artifacts/
cp readme.md artifacts/
cp changelog.md artifacts/
cp documentation/third-party.md artifacts/
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: webp-viewer-windows-msys2
path: |
artifacts/*