Skip to content

Commit

Permalink
add CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Sep 21, 2024
1 parent 91fce0e commit 1fc63d0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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: |
cmake -Bbuild .
cmake --build build -- -j 2

0 comments on commit 1fc63d0

Please sign in to comment.