Skip to content

Update pr-ci.yml

Update pr-ci.yml #670

Workflow file for this run

name: win32
on: [push]
jobs:
build:
if: "contains(github.event.commits[0].message, '[ci build]')"
# 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'
lfs: 'true'
- 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
run: cmake -S %GITHUB_WORKSPACE% -B %GITHUB_WORKSPACE%/build_x86 -A Win32 -DBUILD_EXTENSION_IMGUIEXT=ON -DLUA_ENGINE=luajit
- name: Build
shell: cmd
# Execute the build. You can specify a specific target with "--target <NAME>"
run: |
cmake --build %GITHUB_WORKSPACE%/build_x86 --config Debug --target cpp-tests
cmake --build %GITHUB_WORKSPACE%/build_x86 --config Release --target lua-tests