Skip to content

Commit 2d75322

Browse files
committed
Multi Platform Build
1 parent 2bef340 commit 2d75322

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ jobs:
1212
# well on Windows or Mac. You can convert this to a matrix build if you need
1313
# cross-platform coverage.
1414
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
15-
runs-on: ubuntu-latest
15+
runs-on: ${{ matrix.config.os }} # we run many different builds
16+
strategy:
17+
matrix:
18+
config:
19+
- os: ubuntu-latest
20+
- os: macos-latest
21+
- os: windows-latest
1622

1723
steps:
1824
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)