Skip to content

Commit

Permalink
try: restore previous run command
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed Nov 2, 2023
1 parent b61694b commit 3bbe9fc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/docker-build-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ runs:
shell: bash -l {0}
run: |
docker run -d -p 3001:3001 --name=materials-designer materials-designer:latest
while ! docker logs materials-designer 2>&1 | grep "Compiled"; do
failed=$(docker logs materials-designer 2>&1 | grep "Failed")
if [[ "$failed" != "" ]]; then
exit 1
fi
sleep 5
done
docker run --network=host materials-designer-test
- name: Log output
shell: bash -l {0}
Expand Down

0 comments on commit 3bbe9fc

Please sign in to comment.