axmol/.github/workflows/windows-ci.yml

43 lines
1013 B
YAML
Raw Normal View History

name: windows
on:
push:
branches:
- dev
2021-12-31 11:00:35 +08:00
- release
paths-ignore:
- '**.md'
2022-07-15 18:51:17 +08:00
- 'docs/**'
jobs:
build:
if: ${{ !startsWith(github.event.commits[0].message, 'Merge pull request') }}
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix
2022-08-18 09:13:09 +08:00
runs-on: windows-latest
strategy:
matrix:
arch:
- x86
- x64
env:
BUILD_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v2
2022-09-12 23:09:31 +08:00
- uses: ilammy/msvc-dev-cmd@v1.11.0
2021-08-27 12:39:49 +08:00
with:
arch: ${{ env.BUILD_ARCH }}
2021-08-27 12:39:49 +08:00
- name: Build
run: tools\win-ci\build.ps1 $env:BUILD_ARCH