Skip to content

Commit

Permalink
add CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Aug 16, 2022
1 parent 975b57a commit 103fcc0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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
- uses: actions/checkout@v2
- name: Test
run: |
mkdir build && cd build
cmake -DCAELUM_BUILD_SAMPLES=ON -DCAELUM_SCRIPT_SUPPORT=ON ..
cmake --build . -- -j 2

0 comments on commit 103fcc0

Please sign in to comment.