File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments