Add github workflow & gitignore

This commit is contained in:
Loic Blot
2020-05-18 09:35:38 +02:00
committed by sfan5
parent 08a2846a93
commit 665e4309c4
3 changed files with 28 additions and 2 deletions

22
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: build
# build on c/cpp changes or workflow changes
on:
- push
- pull_request
jobs:
# This is our minor gcc compiler
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install deps
run: |
sudo apt-get install g++ gcc libxxf86vm-dev libgl1-mesa-dev -qyy
- name: Build
run: |
cd source/Irrlicht
make sharedlib