Skip to content

Commit

Permalink
ci: disable netbsd and freebsd due to lack of runners
Browse files Browse the repository at this point in the history
For example for openbsd-cmake-job (7.2, NONE)

    This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.

And maybe this will fix the macos builds.
  • Loading branch information
azat committed Mar 11, 2024
1 parent 0054b9a commit b9e1fe7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ jobs:

freebsd-cmake-job:
runs-on: macos-12
if: "!contains(github.event.head_commit.message, 'ci/freebsd skip') && !contains(github.event.head_commit.message, 'ci/freebsd/cmake skip')"
if: "false && !contains(github.event.head_commit.message, 'ci/freebsd skip') && !contains(github.event.head_commit.message, 'ci/freebsd/cmake skip')"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -766,7 +766,7 @@ jobs:

freebsd-autotools-job:
runs-on: macos-12
if: "!contains(github.event.head_commit.message, 'ci/freebsd skip') && !contains(github.event.head_commit.message, 'ci/freebsd/autotools skip')"
if: "false && !contains(github.event.head_commit.message, 'ci/freebsd skip') && !contains(github.event.head_commit.message, 'ci/freebsd/autotools skip')"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -819,7 +819,7 @@ jobs:

openbsd-cmake-job:
runs-on: macos-12
if: "!contains(github.event.head_commit.message, 'ci/openbsd skip') && !contains(github.event.head_commit.message, 'ci/openbsd/cmake skip')"
if: "false && !contains(github.event.head_commit.message, 'ci/openbsd skip') && !contains(github.event.head_commit.message, 'ci/openbsd/cmake skip')"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -921,7 +921,7 @@ jobs:

openbsd-autotools-job:
runs-on: macos-12
if: "!contains(github.event.head_commit.message, 'ci/openbsd skip') && !contains(github.event.head_commit.message, 'ci/openbsd/autotools skip')"
if: "false && !contains(github.event.head_commit.message, 'ci/openbsd skip') && !contains(github.event.head_commit.message, 'ci/openbsd/autotools skip')"
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit b9e1fe7

Please sign in to comment.