-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (56 loc) · 1.35 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
name: Build TgBot++ (Windows)
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
sys: [mingw64, ucrt64] # clang64
text: ['', 'unsupported']
name: "🚧 ${{ matrix.sys }} (AF_UNIX ${{ matrix.text}})"
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
- name: 'Setup submodule'
run: |
git submodule update --init
cp src/third-party/libsqlite3/upstream/sqlite3.h src/third-party/libsqlite3/libsqlite3/libsqlite3/sqlite3.h
- name: 'Break build of test_af_unix.c'
if: matrix.text != ''
run: |
echo ${{matrix.text}} >> tests/test_af_unix.c
- name: '🚧 Build TgBot++'
run: |
mkdir build
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release .
cmake --build build -j4
- name: Run Tests
run: |
cd build
./bin/TgBot++_test.exe