Merge pull request #2 from minetest/feature/github_workflow

Add github workflow & gitignore
This commit is contained in:
Loïc Blot 2020-05-18 10:02:37 +02:00 committed by GitHub
commit 15bc758439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 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

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.o
*.d
*.so.*