Skip to content

Commit

Permalink
ci: add workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Aug 23, 2023
1 parent dcf99b9 commit 5fa8e11
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aarch64_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: aarch64 Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ref: https://github.com/docker-library/official-images
name: amd64 Docker

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
Distros:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_freebsd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amd64 FreeBSD

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Only macos runner provide virtualisation with vagrant/virtualbox installed.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amd64 Linux

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amd64 macOS

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amd64 Windows

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arm64_docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ref: https://github.com/docker-library/official-images
name: arm64 Docker

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
Distros:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arm_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: arm Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mips64_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mips64 Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mips_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mips Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/powerpc_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: powerpc Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/riscv64_docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ref: https://github.com/docker-library/official-images
name: riscv64 Docker

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
Distros:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/riscv64_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: riscv64 Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s390x_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: s390x Toolchain

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
# Building using the github runner environement directly.
Expand Down

0 comments on commit 5fa8e11

Please sign in to comment.