diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..2184d15b --- /dev/null +++ b/.github/workflows/build.yml @@ -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 + diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..752f66f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.o +*.d +*.so.*