Skip to content

Commit 696d6de

Browse files
committed
wait for the learning container to finish
1 parent 6a2cc4f commit 696d6de

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/e2e_pr.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222

2323
- name: Verify Result
2424
run: |
25-
pwd
26-
docker ps
27-
ls -al
28-
echo "learner output dir:"
29-
ls learner_output
25+
# wait for the learning to be over
26+
while [ "$( docker container inspect -f '{{.State.Running}}' ssh-learner )" = "true" ]; do echo "learning stopped"; done
27+
3028
experiments/scripts/diff_hyps.sh experiments/results/servers/dropbear ${PWD}/learner_output 3

0 commit comments

Comments
 (0)