Merge pull request #54 from visionmercer/evaluator #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push CI | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'ci-skip')" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev | |
- name: Bootstrap compiler | |
run: .ci/bootstrap.sh lnx | |
- name: Compile | |
run: .ci/compile.sh |