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

74 lines
2.0 KiB
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:
2023-01-03 12:33:24 +08:00
toolset-latest:
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:
2022-10-13 23:16:25 +08:00
- uses: actions/checkout@v3
2020-10-24 18:41:20 +08:00
with:
submodules: 'recursive'
- name: Setup Python
2022-10-13 23:16:25 +08:00
uses: actions/setup-python@v3
2020-10-24 18:41:20 +08:00
2023-01-03 12:33:24 +08:00
- uses: ilammy/msvc-dev-cmd@v1.12.0
with:
arch: ${{ env.BUILD_ARCH }}
- name: Build
run: tools\win-ci\build.ps1 $env:BUILD_ARCH
toolset-vs2019:
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
runs-on: windows-2019
strategy:
matrix:
arch:
- x86
- x64
env:
BUILD_ARCH: ${{ matrix.arch }}
2023-01-03 15:09:45 +08:00
# Test winsdk < 10.0.22000.0 (missing C11 standard stdalign.h), axmol will auto fallback to C99 for resolving compiling issue.
WINSDK_VER: '10.0.19041.0'
2023-01-03 12:33:24 +08:00
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v3
- uses: ilammy/msvc-dev-cmd@v1.12.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
2023-01-03 14:34:10 +08:00
run: tools\win-ci\build.ps1 $env:BUILD_ARCH $env:WINSDK_VER