Straightforward fix for on_character_rotate error (#25) #211
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: GDExtension CMake | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
# linux / gcc build | |
- name: '[linux | submodule sync]' | |
run: cd ${{ github.workspace }} && git submodule deinit --all --force && git submodule update --init --recursive | |
- name: '[linux | gcc] => cmake - delete cache' | |
run: rm -rf ${{ github.workspace }}/.out/* | |
- name: '[linux | gcc] => cmake - configure' | |
run: > | |
cmake -B ${{ github.workspace }}/.out | |
-DCMAKE_CXX_COMPILER=g++ | |
-DCMAKE_C_COMPILER=gcc | |
-DCMAKE_BUILD_TYPE=Debug | |
-S ${{ github.workspace }} | |
-G Ninja | |
- name: '[linux | gcc] => cmake - clean' | |
run: cmake --build ${{ github.workspace }}/.out --config Debug --target clean --parallel 48 | |
- name: '[linux | gcc] => cmake - build' | |
run: cmake --build ${{ github.workspace }}/.out --config Debug --target roguelite --parallel 48 |