support for Ogre-Next 3.0 and 4.0 #6
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: CI Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
linux: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y cmake g++ libogre-1.12-dev libopenal-dev libtheora-dev libogg-dev libvorbis-dev | |
- uses: actions/checkout@v2 | |
- name: Test | |
run: | | |
cmake -Bbuild . | |
cmake --build build -- -j 2 |