Skip to content

Commit

Permalink
Add top-level build-all workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
russhwolf committed Jan 9, 2024
1 parent 7d3a450 commit ea3b96d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 24 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build All

on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"

workflow_dispatch:

jobs:
build-linux:
name: Build Linux
uses: ./.github/workflows/build-linux.yml

build-macos:
name: Build macOS
uses: ./.github/workflows/build-macos.yml

build-windows:
name: Build Windows
uses: ./.github/workflows/build-windows.yml
9 changes: 1 addition & 8 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
name: Build Linux

on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
workflow_call:
workflow_dispatch:

jobs:
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
name: Build macOS

on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
workflow_call:
workflow_dispatch:

jobs:
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
name: Build Windows

on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
workflow_call:
workflow_dispatch:

jobs:
Expand Down

0 comments on commit ea3b96d

Please sign in to comment.