You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
965 B
32 lines
965 B
1 year ago
|
name: test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- 'docs/**'
|
||
|
- 'README.md'
|
||
|
- 'LICENSE'
|
||
|
- '.gitignore'
|
||
|
- 'examples/**'
|
||
|
- '.github/workflows/teensy*.yml'
|
||
|
env:
|
||
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||
|
BUILD_TYPE: Debug
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: download dependencies
|
||
|
run: sudo apt-get update && sudo apt-get install -yq libsoundio-dev
|
||
|
|
||
|
- name: where are my libs folders
|
||
|
# Some projects don't allow in-source building, so create a separate build directory
|
||
|
# We'll use this as our working directory for all subsequent commands
|
||
|
run: ls /lib && ls /usr/lib && ls /usr/local/lib
|
||
|
|
||
|
- name: where is soundio
|
||
|
# Some projects don't allow in-source building, so create a separate build directory
|
||
|
# We'll use this as our working directory for all subsequent commands
|
||
|
run: dpkg -L libsoundio-dev
|