Skip to content

Commit f396bac

Browse files
committed
disable docker tests for unstable buildjet runners
1 parent ce2d616 commit f396bac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ jobs:
105105
# GitHub Windows and xlarge MacOS runner cannot run Docker containers:
106106
# - https://github.com/orgs/community/discussions/25491
107107
# - https://docs.github.com/en/actions/using-github-hosted-runners/about-larger-runners/
108-
# TODO re-enable for mac when mac11 docker gets more stable
109-
if: matrix.os != 'windows' && matrix.os != 'darwin'
108+
# TODO re-enable for mac when mac11 docker gets more stable, and for buildjet when the tests there get more stable
109+
if: matrix.os != 'windows' && matrix.os != 'darwin' && matrix.runner != 'buildjet-2vcpu-ubuntu-2204-arm'
110110
run: |
111111
# Pull images to avoid making smoke tests vulnerable to system behavior (docker pull speed)
112112
docker pull localstack/localstack
@@ -124,8 +124,8 @@ jobs:
124124
# - https://github.com/orgs/community/discussions/25491
125125
# - https://docs.github.com/en/actions/using-github-hosted-runners/about-larger-runners/
126126
# Skip these checks for forks (forks do not have access to the LocalStack Pro API key)
127-
# TODO re-enable for mac when mac11 docker gets more stable
128-
if: matrix.os != 'windows' && matrix.os != 'darwin' && !github.event.pull_request.head.repo.fork
127+
# TODO re-enable for mac when mac11 docker gets more stable, and for buildjet when the tests there get more stable
128+
if: matrix.os != 'windows' && matrix.os != 'darwin' && matrix.runner != 'buildjet-2vcpu-ubuntu-2204-arm' && !github.event.pull_request.head.repo.fork
129129
run: |
130130
# Pull images to avoid making smoke tests vulnerable to system behavior (docker pull speed)
131131
docker pull localstack/localstack-pro

0 commit comments

Comments
 (0)