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

43 lines
1013 B
YAML
Raw Normal View History

2021-08-27 01:20:07 +08:00
name: windows
2020-10-24 18:41:20 +08:00
2021-07-04 22:05:36 +08:00
on:
push:
2021-07-07 02:43:37 +08:00
branches:
- dev
2021-12-31 11:00:35 +08:00
- release
2022-07-07 17:45:52 +08:00
2022-07-07 17:42:45 +08:00
paths-ignore:
- '**.md'
2022-07-15 18:51:17 +08:00
- 'docs/**'
2020-10-24 18:41:20 +08:00
jobs:
build:
2021-07-07 10:52:45 +08:00
if: ${{ !startsWith(github.event.commits[0].message, 'Merge pull request') }}
2020-10-24 18:41:20 +08:00
# 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-16 08:26:20 +08:00
runs-on: windows-latest
2021-08-27 01:31:35 +08:00
strategy:
matrix:
arch:
- x86
- x64
env:
BUILD_ARCH: ${{ matrix.arch }}
2020-10-24 18:41:20 +08:00
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v2
2022-01-28 15:27:17 +08:00
- uses: ilammy/msvc-dev-cmd@v1.10.0
2021-08-27 12:39:49 +08:00
with:
arch: ${{ env.BUILD_ARCH }}
2020-10-24 18:41:20 +08:00
2021-08-27 12:39:49 +08:00
- name: Build
2021-12-30 20:15:42 +08:00
run: tools\win-ci\build.ps1 $env:BUILD_ARCH