Skip to content

Commit

Permalink
chore: combine CI dev builds using callable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed Apr 22, 2023
1 parent 084ae86 commit 8448809
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/all-dev-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Matrix Development Builds

on: [push, pull_request]

jobs:
Linux:
uses: ./.github/workflows/ubuntu-builds.yml
Windows:
uses: ./.github/workflows/windows-builds.yml
MacOS:
uses: ./.github/workflows/macos-builds.yml
2 changes: 1 addition & 1 deletion .github/workflows/macos-builds.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: macos-builds

on: [push, pull_request]
on: workflow_call

env:
CMAKE_VERSION: 3.21.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-builds.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ubuntu-builds

on: [push, pull_request]
on: workflow_call

env:
CMAKE_VERSION: 3.21.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: windows-builds

on: [push, pull_request]
on: workflow_call

env:
CMAKE_VERSION: 3.21.1
Expand Down

0 comments on commit 8448809

Please sign in to comment.