scene: Add an optional yaw to the entity/character placement #183
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: simple-build | |
on: [push] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: submodules | |
run: | | |
git config --global url."https://github.com/".insteadOf "[email protected]:" | |
git submodule update --init --recursive | |
- name: install-deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libfreetype-dev libglew-dev libglfw3-dev libogg-dev libopenal-dev libpng-dev libvorbis-dev zlib1g-dev | |
- name: configure | |
run: | | |
cd ${{ github.workspace }} | |
./configure.sh | |
- name: build | |
run: | | |
cd ${{ github.workspace }} | |
./build.sh |