This commit is contained in:
Jackson Delahunt 2020-10-18 13:40:20 +11:00
parent d5f223f185
commit 005803c4e6
2 changed files with 1 additions and 3 deletions

View file

@ -27,5 +27,5 @@ jobs:
run: ./docker/scripts/test.sh
env:
DESKTOP_ENVIRONMENT_REGISTRY: ghcr.io/${{ env.REPOSITORY_OWNER }}
DESKTOP_ENVIRONMENT_CONTAINER_TAG: ${{ github.ref }}
DESKTOP_ENVIRONMENT_CONTAINER_TAG: ${{ github.sha }}
continue-on-error: true

View file

@ -19,8 +19,6 @@ docker run \
$DESKTOP_ENVIRONMENT_REGISTRY/$DESKTOP_ENVIRONMENT_CONTAINER_IMAGE:$DESKTOP_ENVIRONMENT_CONTAINER_TAG \
sleep infinity
exit 1
# Wait until the desktop environment test container is running before proceeding
until docker inspect $DESKTOP_ENVIRONMENT_CONTAINER_NAME | grep Status | grep -m 1 running >/dev/null; do sleep 1; done