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
9 changes: 6 additions & 3 deletions .github/workflows/drupal-contrib-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ on:
jobs:
contrib-plain:
name: Contrib ${{ matrix.project }} D${{ matrix.drupal_version }} (plain)
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
# Disabled: self-hosted sysbox runner; use contrib-plain-gh instead.
# To re-enable: restore `if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}`
if: false
runs-on: [self-hosted, sysbox]
strategy:
matrix:
Expand Down Expand Up @@ -204,7 +206,9 @@ jobs:

contrib-issue-fork:
name: Contrib ${{ vars.CONTRIB_TEST_PROJECT || 'token' }} issue fork
if: ${{ vars.CONTRIB_TEST_ISSUE_FORK != '' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner) }}
# Disabled: self-hosted sysbox runner; use contrib-issue-fork-gh instead.
# To re-enable: restore `if: ${{ vars.CONTRIB_TEST_ISSUE_FORK != '' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner) }}`
if: false
runs-on: [self-hosted, sysbox]
defaults:
run:
Expand Down Expand Up @@ -392,7 +396,6 @@ jobs:
- project: pathauto
drupal_version: "11"
fail-fast: false
max-parallel: 1
defaults:
run:
shell: bash -euo pipefail {0}
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/drupal-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ on:
jobs:
drupal-plain:
name: Drupal ${{ matrix.drupal_version }} (plain)
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
# Disabled: self-hosted sysbox runner; use drupal-plain-gh instead.
# To re-enable: restore `if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}`
if: false
runs-on: [self-hosted, sysbox]
strategy:
matrix:
Expand Down Expand Up @@ -201,7 +203,6 @@ jobs:
matrix:
drupal_version: ["12", "11"]
fail-fast: false
max-parallel: 1
defaults:
run:
shell: bash -euo pipefail {0}
Expand Down Expand Up @@ -268,7 +269,9 @@ jobs:

drupal-issue-fork:
name: Drupal issue fork ${{ vars.DRUPAL_TEST_ISSUE_FORK || '3585397' }}
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
# Disabled: self-hosted sysbox runner; use drupal-issue-fork-gh instead.
# To re-enable: restore `if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}`
if: false
runs-on: [self-hosted, sysbox]
defaults:
run:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ concurrency:
jobs:
integration-test:
name: Integration test (${{ matrix.template }})
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
# Disabled: self-hosted sysbox runner; use integration-test-gh instead.
# To re-enable: restore `if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}`
if: false
runs-on: [self-hosted, sysbox]
strategy:
matrix:
Expand Down Expand Up @@ -303,7 +305,6 @@ jobs:
extra_params: ""
app_slug: ""
fail-fast: false
max-parallel: 1
defaults:
run:
shell: bash -euo pipefail {0}
Expand Down