Skip to content

Commit

Permalink
Merge branch 'master' of github.heygears.com-rbdannenberg:PortMidi/portmidi
Browse files Browse the repository at this point in the history
  • Loading branch information
rbdannenberg committed Feb 22, 2022
2 parents 5ecad7c + 05dfa20 commit 6a97d1e
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: build

on:
push:
pull_request:

jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- name: Ubuntu
os: ubuntu-latest
install_dir: ~/portmidi
cmake_extras: -DCMAKE_BUILD_TYPE=RelWithDebInfo
- name: macOS
os: macos-latest
install_dir: ~/portmidi
cmake_extras: -DCMAKE_BUILD_TYPE=RelWithDebInfo
- name: Windows
os: windows-latest
install_dir: C:\portmidi
cmake_config: --config RelWithDebInfo

name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: "[Ubuntu] Install dependencies"
run: sudo apt install -y libasound2-dev
if: runner.os == 'Linux'
- name: Configure
run: cmake -D CMAKE_INSTALL_PREFIX=${{ matrix.install_dir }} ${{ matrix.cmake_extras }} -S . -B build
- name: Build
run: cmake --build build ${{ matrix.cmake_config }}
env:
CMAKE_BUILD_PARALLEL_LEVEL: 2
- name: Install
run: cmake --install . ${{ matrix.cmake_config }}
working-directory: build
- name: Upload Build Artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.name }} portmidi build
path: ${{ matrix.install_dir }}

0 comments on commit 6a97d1e

Please # to comment.