noinstall #20
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: audio-soundio | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'LICENSE' | |
- '.gitignore' | |
- 'extras/soundio/examples/**' | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Debug | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
repository: newdigate/teensy-x86-stubs | |
path: teensy-x86-stubs | |
- uses: actions/checkout@v2 | |
with: | |
repository: newdigate/teensy-x86-sd-stubs | |
path: teensy-x86-sd-stubs | |
- name: download dependencies | |
run: sudo apt-get update && sudo apt-get install -yq libboost-test-dev libsoundio-dev | |
- name: Make and Install teensy-x86-stubs | |
run: cd teensy-x86-stubs && mkdir cmake-build-$BUILD_TYPE && cd cmake-build-$BUILD_TYPE && cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. && sudo make install | |
- name: Make and Install teensy-x86-sd-stubs | |
run: cd teensy-x86-sd-stubs && mkdir cmake-build-$BUILD_TYPE && cd cmake-build-$BUILD_TYPE && cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. && sudo make install | |
- name: Make and Install teensy-audio-x86-stubs-soundio | |
run: mkdir cmake-build-$BUILD_TYPE && cd cmake-build-$BUILD_TYPE && cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. && make teensy_audio_x86_stubs_soundio |