Add CI build
This commit is contained in:
parent
41c2db982c
commit
bda5ebddca
2 changed files with 19 additions and 0 deletions
17
.github/workflows/build.yml
vendored
Normal file
17
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: build
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install -y meson libglfw3-dev libglew-dev libfreeimage-dev
|
||||
- name: Meson Build
|
||||
run: |
|
||||
meson build
|
||||
ninja -C build
|
Loading…
Add table
Add a link
Reference in a new issue