Update ccpp.yml

This commit is contained in:
Nielsbishere 2019-12-04 14:35:04 +01:00 committed by GitHub
parent c4c51df6e0
commit 9618d5e4ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 12 deletions

View File

@ -9,15 +9,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: get glfw - name: apt-update
run: git clone https://github.com/glfw/glfw --recurse run: sudo apt-get update -qq
- name: setup pkgconfig - name: apt get glfw
run: export PKG_CONFIG_PATH=/home/runner/work/Nuklear/Nuklear/glfw/src run: sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libglew-dev
- name: make install - name: build opengl2
run: make install --directory example run: make -C demo/glfw_opengl2
- name: make - name: build opengl3
run: make --directory example run: make -C demo/glfw_opengl3
- name: check - name: build example
run: make check --directory example run: make -C example
- name: distcheck
run: make distcheck --directory example