-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (59 loc) · 1.26 KB
/
windows_test.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
name: Build TgBot++ (Windows)
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
sys: [mingw64, ucrt64] # clang64
name: "🚧 ${{ matrix.sys }}"
defaults:
run:
shell: msys2 {0}
steps:
- name: '🧰 Checkout'
uses: actions/[email protected]
with:
fetch-depth: 0
- name: 'Setup MSYS2'
uses: msys2/[email protected]
with:
msystem: ${{matrix.sys}}
update: true
install: >-
git
make
pacboy: >-
toolchain:p
cmake:p
ninja:p
boost:p
pcre:p
libxml2:p
libpng:p
libwebp:p
libjpeg:p
opencv:p
libgit2:p
gtest:p
fmt:p
- name: 'Setup submodule'
run: |
git submodule update --init
- name: '🚧 Build TgBot++'
run: |
mkdir build
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Debug -DTGBOT_ENABLE_TESTING=ON .
cmake --build build -j4
- name: Run Tests
run: |
cd build
ctest --output-on-failure --timeout 30