-
-
Notifications
You must be signed in to change notification settings - Fork 45
73 lines (62 loc) · 1.74 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
66
67
68
69
70
71
72
73
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 7zip.install
curl.exe -OL https://github.com/niXman/mingw-builds-binaries/releases/download/13.2.0-rt_v11-rev0/x86_64-13.2.0-release-win32-seh-msvcrt-rt_v11-rev0.7z
7z x x86_64-13.2.0-release-win32-seh-msvcrt-rt_v11-rev0.7z
- 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"
env:
CC: ${{github.workspace}}/mingw64/bin/gcc.exe
CXX: ${{github.workspace}}/mingw64/bin/g++.exe
- name: Configure CMake
run: |
cmake -B debug -DCMAKE_BUILD_TYPE=Debug -G "MinGW Makefiles" -DCCACHE_ENABLE=OFF .
env:
CC: ${{github.workspace}}/mingw64/bin/gcc.exe
CXX: ${{github.workspace}}/mingw64/bin/g++.exe
- name: Build
run: |
cmake --build debug --config Debug
env:
CC: ${{github.workspace}}/mingw64/bin/gcc.exe
CXX: ${{github.workspace}}/mingw64/bin/g++.exe