Small bug fixes for removing sprite and animated sprite nodes and python color and modulate functions #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macosx-clang-build | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
LC_ALL: en_US.UTF-8 | |
LANG: en_US.UTF-8 | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install dependencies | |
run: | | |
brew install pkg-config | |
- name: get cmake | |
uses: lukka/get-cmake@latest | |
with: | |
useLocalCache: true | |
useCloudCache: false | |
cmakeVersion: "3.27.0" | |
- name: run build | |
run: | | |
cd ${{ github.workspace }} | |
mkdir -p builds | |
cmake -S . -B builds -DIS_CI_BUILD="true" | |
cmake --build builds | |
- name: run unit tests | |
run: | | |
echo "Running crescent engine tests!" | |
${{ github.workspace }}/builds/crescent_engine_test | |
echo "" | |
echo "Running crescent engine editor tests!" | |
${{ github.workspace }}/builds/crescent_engine_editor_test |