-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca52eb0
commit ee0cbc5
Showing
1 changed file
with
27 additions
and
0 deletions.
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,27 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: install nasm | ||
run: sudo apt-get install nasm | ||
- name: install OpenGL dev | ||
run: apt-get install xorg-dev libglu1-mesa-dev mesa-common-dev | ||
- name: install ALSA dev | ||
run: apt-get install libasound2-dev | ||
- name: install PulseAudio dev | ||
run: apt-get install libpulse-dev | ||
- name: install Python dev | ||
run: sudo apt-get install python3.7-dev | ||
- name: cmake | ||
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Debug -DDJV_THIRD_PARTY=TRUE | ||
- name: make | ||
run: cd build && make | ||
- name: make test | ||
run: cd build && make test |