mirror of
https://github.com/spatialaudio/portaudio-binaries.git
synced 2026-03-18 00:46:02 +08:00
31 lines
811 B
YAML
31 lines
811 B
YAML
name: Build ASDF lib and run tests
|
|
on: [push]
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
container: quay.io/pypa/manylinux2014_x86_64
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
yum install -y \
|
|
jack-audio-connection-kit \
|
|
#
|
|
- name: checkout portaudio
|
|
# NB: v4 doesn't seem to work with the manylinux2014 image:
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: PortAudio/portaudio
|
|
ref: v19.7.0
|
|
path: portaudio
|
|
- name: cmake configure
|
|
run: |
|
|
cmake -S portaudio -B build
|
|
- name: cmake build
|
|
run: |
|
|
cmake --build build
|
|
- name: upload build
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: manylinux-build
|
|
path: build/*
|