Jd dev #55
Workflow file for this run
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: C/C++ CI | |
# run only on pushes or pull requests to master | |
# this way you can develop on and push to separate branches without | |
# using up runner minutes | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-ubuntu: | |
# default Ubuntu build | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dep | |
run: sudo apt-get -y install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglfw3-dev | |
- name: make | |
run: make | |
build-ubuntu-glut: | |
# Ubuntu build with GLUT graphics | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dep | |
run: sudo apt-get -y install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglfw3-dev | |
- name: make | |
run: make GLUT_OR_GLFW=_USE_GLUT_ | |
build-ubuntu-no-graphics: | |
# Ubuntu build with all graphics disabled | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: make GUIFLAG= |