We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1516b4c commit 5a8ba57Copy full SHA for 5a8ba57
.github/workflows/cmake.yml
@@ -11,14 +11,23 @@ env:
11
12
jobs:
13
build:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
+
16
+ strategy:
17
+ matrix:
18
+ os: [ubuntu-latest, macos-latest]
19
20
steps:
21
- uses: actions/checkout@v2
22
- - name: Install apt libraries
23
+ - name: Install libraries (Linux)
24
+ if: ${{ matrix.os == 'ubuntu-latest' }}
25
run: sudo apt-get install -y libopenal-dev libsamplerate-dev
26
27
+ - name: Install libraries (macOS)
28
+ if: ${{ matrix.os == 'macos-latest' }}
29
+ run: brew install libsamplerate
30
31
- name: Install phosg
32
run: |
33
git clone https://github.com/fuzziqersoftware/phosg.git
0 commit comments