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

43 lines
1.7 KiB
YAML
Raw Normal View History

2020-10-24 18:41:20 +08:00
name: win32
on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
2020-10-27 15:42:35 +08:00
TRAVIS_PULL_REQUEST: false
2020-10-24 18:41:20 +08:00
jobs:
build:
2020-10-27 15:42:35 +08:00
if: "!contains(github.event.commits[0].message, '[skip ci]') && contains(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
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v2
2020-10-25 20:15:49 +08:00
- name: Download dependecies
2020-10-24 18:41:20 +08:00
shell: cmd
run: python download-deps.py --remove-download=False
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: cmd
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake -S %GITHUB_WORKSPACE% -B %GITHUB_WORKSPACE%/build_x86 -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -A Win32 -DBUILD_EXTENSION_IMGUIEXT=ON
- name: Build
shell: cmd
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build %GITHUB_WORKSPACE%/build_x86 --config %BUILD_TYPE% --target cpp-tests