Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Only trigger when a PR is committed.
# Only trigger when a PR is committed or manually.
name: Linux Build All Arches
#on: [pull_request]
on:
pull_request:
types: [closed]
branches:
- master
workflow_dispatch:

jobs:
build:
if: github.event.pull_request.merged
if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch'
name: Build
# We used to build on ubuntu-18.04 but that is now deprecated by
# GitHub. Earlier distributions will have to use the musl build.
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/musl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ name: Linux Build Musl Static
on:
pull_request:
types: [closed]
workflow_dispatch:

jobs:
build:
# Only trigger when a PR is committed.
if: github.event.pull_request.merged
# Only trigger when a PR is committed or manually triggered.
if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch'
name: Build
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Windows Test
on: [pull_request]
on:
pull_request:
workflow_dispatch:

jobs:
build:
Expand Down
Loading