Skip to content

Commit

Permalink
Update one of the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Sep 7, 2023
1 parent 2b3dd19 commit 11b129a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/build_test_local_linux_builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ for dockerfile_setting in "${DOCKERFILES_TO_BUILD_AND_RUN[@]}"; do
tag="${without_ext}:latest"
log="${dockerfile_dir}/${without_ext}.log"

docker build -t $tag -f $dockerfile . #&> $log || ( echo -e "${RED}FAILED${NC}"; exit 1 )
docker run -it $tag #&>> $log || ( echo -e "${RED}FAILED${NC}"; exit 1 )
docker build -t $tag -f $dockerfile . &> $log || ( echo -e "${RED}FAILED${NC}"; exit 1 )
docker run -it $tag &>> $log || ( echo -e "${RED}FAILED${NC}"; exit 1 )

echo -e "${GREEN}OK${NC}"
done

0 comments on commit 11b129a

Please sign in to comment.