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
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-10-27 18:07:55 +08:00
|
|
|
if: "contains(github.event.commits[0].message, '[ci build]')"
|
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
|
|
|
|
|
|
|
|
- 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
|
2020-11-08 13:12:06 +08:00
|
|
|
run: cmake -S %GITHUB_WORKSPACE% -B %GITHUB_WORKSPACE%/build_x86 -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -A Win32 -DBUILD_EXTENSION_IMGUIEXT=ON -DLUA_ENGINE=luajit
|
2020-10-24 18:41:20 +08:00
|
|
|
|
|
|
|
- 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
|