Skip to content

Commit

Permalink
[GitHub Actions] Support [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Mar 9, 2020
1 parent 29084ff commit 61ae6f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI_fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
fedora-latest-gcc:
name: :LATEST (CMake) [GCC]
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -27,6 +28,7 @@ jobs:
fedora-latest-gcc-m32:
name: :LATEST (CMake) [GCC -m32]
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/CI_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
ubuntu-16-04-gcc:
name: Ubuntu 16.04 (CMake) [GCC]
runs-on: ubuntu-16.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -31,6 +32,7 @@ jobs:
ubuntu-18-04-gcc:
name: Ubuntu 18.04 (CMake) [GCC]
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -52,6 +54,7 @@ jobs:
package-source:
name: Package Source (Ubuntu 18.04, CMake) [GCC]
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -95,6 +98,7 @@ jobs:
ubuntu-18-04-clang:
name: Ubuntu 18.04 (CMake) [Clang]
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/CI_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
WZ_TARGET_ARCH: ${{ matrix.architecture }}
name: '${{ matrix.architecture }} [${{ matrix.compiler }}]'
runs-on: windows-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 61ae6f3

Please sign in to comment.