mirror of https://github.com/axmolengine/axmol.git
77 lines
2.3 KiB
YAML
77 lines
2.3 KiB
YAML
name: windows
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- release
|
|
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'docs/**'
|
|
|
|
jobs:
|
|
toolset-latest:
|
|
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-latest
|
|
strategy:
|
|
matrix:
|
|
config:
|
|
- {arch: x86, dll: false}
|
|
- {arch: x64, dll: false}
|
|
- {arch: x86, dll: true}
|
|
- {arch: x64, dll: true}
|
|
env:
|
|
BUILD_ARCH: ${{ matrix.config.arch }}
|
|
BUILD_DLL: ${{ matrix.config.dll }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v3
|
|
|
|
- uses: ilammy/msvc-dev-cmd@v1.12.0
|
|
with:
|
|
arch: ${{ env.BUILD_ARCH }}
|
|
|
|
- name: Build
|
|
run: tools\win-ci\build.ps1 $env:BUILD_ARCH $env:BUILD_DLL
|
|
# 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 }}
|
|
# # 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'
|
|
|
|
# steps:
|
|
# - uses: actions/checkout@v3
|
|
# with:
|
|
# submodules: 'recursive'
|
|
|
|
# - name: Setup Python
|
|
# uses: actions/setup-python@v3
|
|
|
|
# - uses: ilammy/msvc-dev-cmd@v1.12.0
|
|
# with:
|
|
# arch: ${{ env.BUILD_ARCH }}
|
|
|
|
# - name: Build
|
|
# run: tools\win-ci\build.ps1 $env:BUILD_ARCH
|