Skip to content

Commit

Permalink
ci: disable run on macOS
Browse files Browse the repository at this point in the history
It was decided to turn off macOS on CI until we provide a good
support.
  • Loading branch information
oleg-jukovec committed Nov 23, 2024
1 parent c5c65e1 commit 1ea57bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 22 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,7 @@ jobs:
run: mage integrationfull

full-ci-macOS:
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.action == 'labeled' &&
github.event.label.name == 'full-ci') ||
(github.event_name == 'pull_request' &&
github.event.action == 'synchronize' &&
contains(github.event.pull_request.labels.*.name, 'full-ci'))
if: false
runs-on: [self-hosted, macOS-13-self-hosted, x86_64, regular]
timeout-minutes: 90
steps:
Expand Down Expand Up @@ -218,15 +211,7 @@ jobs:
# ee suffix means that the job runs ee integration tests.
full-ci-macOS-ee:
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request_target' &&
github.event.action == 'labeled' &&
github.event.label.name == 'full-ci') ||
(github.event_name == 'pull_request' &&
github.event.action == 'synchronize' &&
github.event.pull_request.head.repo.full_name == github.repository &&
contains(github.event.pull_request.labels.*.name, 'full-ci'))
if: false
runs-on: macos-12
steps:
# `ref` as merge request is needed for pull_request_target because this
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,7 @@ jobs:
run: mage integration

tests-mac-os-ce:
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.owner.login != 'tarantool' &&
!contains(github.event.pull_request.labels.*.name, 'full-ci'))
if: false
runs-on: [self-hosted, macOS-13-self-hosted, x86_64, regular]
timeout-minutes: 40
steps:
Expand Down

0 comments on commit 1ea57bf

Please sign in to comment.