Skip to content

update version

update version #307

Workflow file for this run

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