Skip to content

Commit f82c431

Browse files
don't test on arm64
Signed-off-by: Adrian Cole <[email protected]>
1 parent a5ecd9f commit f82c431

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/docker-chatbot-rag-app.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ jobs:
3131
build-image:
3232
timeout-minutes: 90 # instead of 360 by default
3333
strategy:
34-
fail-fast: false # don't fail fast as sometimes failures are arch specific
3534
matrix:
3635
runner:
3736
- ubuntu-24.04
38-
- ubuntu-24.04-arm
37+
- ubuntu-24.04-arm # we don't test on this as it times out in CI
3938
runs-on: ${{ matrix.runner }}
4039
steps:
4140
- uses: actions/checkout@v4
@@ -57,10 +56,10 @@ jobs:
5756
cache-from: type=gha
5857
cache-to: type=gha,mode=max
5958
- name: start elasticsearch
60-
if: github.event_name == 'pull_request'
59+
if: github.event_name == 'pull_request' && matrix.runner == 'ubuntu-24.04'
6160
run: docker compose -f docker/docker-compose-elastic.yml up --quiet-pull -d --wait --wait-timeout 120 elasticsearch
6261
- name: test image
63-
if: github.event_name == 'pull_request'
62+
if: github.event_name == 'pull_request' && matrix.runner == 'ubuntu-24.04'
6463
working-directory: example-apps/chatbot-rag-app
6564
run: | # This tests ELSER is working, which doesn't require an LLM.
6665
cp env.example .env

0 commit comments

Comments
 (0)