Skip to content

Commit 27f7088

Browse files
author
Sunil Thaha
authored
Merge pull request #374 from sunya-ch/ci
chore: add integration test with latest
2 parents f90ed1f + ea57391 commit 27f7088

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/pr.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,18 @@ jobs:
234234
kepler_tag: release-0.7.11
235235
additional_opts: " DB"
236236

237+
integration-test-with-latest:
238+
needs: [check-secret, check-branch, check-change, base-image]
239+
if: always()
240+
uses: ./.github/workflows/integration-test.yml
241+
with:
242+
base_change: ${{ needs.check-change.outputs.base }}
243+
docker_secret: ${{ needs.check-secret.outputs.docker-secret }}
244+
image_repo: ${{ vars.IMAGE_REPO || 'docker.io/library' }}
245+
image_tag: ${{ needs.check-branch.outputs.tag }}
246+
kepler_tag: latest
247+
additional_opts: " DB"
248+
237249
verify_model_training_script:
238250
runs-on: ubuntu-latest
239251
steps:

tests/e2e_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ wait_for_keyword() {
9191
if grep -q "$keyword" <<< $(get_${component}_log); then
9292
return
9393
fi
94-
sleep 5
94+
sleep 10
9595
done
9696

9797
echo "timeout ${num_iterations}s waiting for '${keyword}' from ${component} log"

0 commit comments

Comments
 (0)