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

48 lines
1.1 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
- main
2021-07-04 22:05:36 +08:00
paths:
2021-07-05 14:31:42 +08:00
- cmake/**/*
- cocos/**/*
- extensions/**/*
- tests/**/*
- thirdparty/**/*
2021-07-04 22:05:36 +08:00
- CMakeLists.txt
2021-08-27 01:20:07 +08:00
- .github/workflows/windows-ci.yml
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
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'
lfs: 'true'
2020-10-24 18:41:20 +08:00
- name: Setup Python
uses: actions/setup-python@v2
2021-08-27 01:31:35 +08:00
- uses: ilammy/msvc-dev-cmd@v1.9.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
run: tools\windows-ci\build.ps1 $env:BUILD_ARCH