-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New ci.yml. Build nanovg on every push on ubuntu.
Does not build examples (yet), due to technical problems with the older ubuntu version being used by github.
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
env: | ||
BUILD_TYPE: release | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install required packages | ||
run: sudo apt-get install premake4 build-essential libglfw3-dev libglew-dev pkg-config | ||
|
||
- name: Premake | ||
run: premake4 gmake | ||
|
||
# due to glew problems with in the current ubuntu-latest, we don't build the examples (yet) | ||
# https://github.com/openai/mujoco-py/issues/383 has the same problem for reference | ||
# this doesn't happen in focal | ||
- name: Make | ||
run: cd build && make nanovg |
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