-
-
Notifications
You must be signed in to change notification settings - Fork 45
65 lines (53 loc) · 1.27 KB
/
mingw.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
name: MinGW build
on:
push:
branches:
- master
tags:
- v*.*.*
paths:
- '!README.md'
- '!CONTRIBUTING.md'
- '!docs/**'
- 'src/**'
- '.github/**'
- 'tests/**'
- 'tools/**'
pull_request:
branches:
- master
paths:
- '!README.md'
- '!CONTRIBUTING.md'
- '!docs/**'
- 'src/**'
- '.github/**'
- 'tests/**'
- 'tools/**'
jobs:
x64:
runs-on: windows-2019
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: Setup Dependencies
shell: powershell
run: |
choco install -y mingw --version=11.2.0.07112021
- name: Export chocolatey
run: export PATH=C:\\ProgramData\\chocolatey\\bin:$PATH
- name: Cache Libraries
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs/wxWidgets
key: x64-libs-cache-mingw
- name: Install Libraries
run: "tools/install_wxWidgets.bat -mingw 64"
- name: Configure CMake
run: |
cmake -B debug -DCMAKE_BUILD_TYPE=Debug -G "MinGW Makefiles" -DCCACHE_ENABLE=OFF .
- name: Build
run: |
cmake --build debug --config Debug