Skip to content

Commit

Permalink
feat(ci/cd): fix test syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bchmnn committed Jun 6, 2024
1 parent a1bcfc4 commit 12aed80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/enochecker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
echo "ENOCHECKER_TEST_SERVICE_ADDRESS=$(ip -4 address show dev eth0 | grep inet | awk '{ print $2 }' | sed 's|/.*$||')" >> $GITHUB_ENV
- name: wait for dind
run: while true; do test $(docker logs replme-backend 2> /dev/null | grep "Listening and serving HTTP on :6969" | wc -l) \> 1 && break; done
run: while true; do test $(docker logs replme-backend 2> /dev/null | grep "Listening and serving HTTP on :6969" | wc -l) -ge 1 && break; done

- name: run enochecker_test
run: |
Expand Down

0 comments on commit 12aed80

Please sign in to comment.