Created
February 26, 2017 07:10
-
-
Save laughinghan/733c7e94d95a1f3a1c4707973c69f955 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Subject: [PATCH] CI: Print exit code of bg processes | |
And complain if the readyfiles are anything but empty, including if the | |
exit code is written to them. | |
diff --git a/circle.yml b/circle.yml | |
index e910497..28f7e60 100644 | |
--- a/circle.yml | |
+++ b/circle.yml | |
@@ -50,7 +50,7 @@ dependencies: | |
# Sauce Connect randomly fails so try twice https://git.io/vPN8v | |
time sc-*-linux/bin/sc --user $SAUCE_USERNAME --api-key $SAUCE_ACCESS_KEY --readyfile ~/sauce_is_ready \ | |
|| time sc-*-linux/bin/sc --user $SAUCE_USERNAME --api-key $SAUCE_ACCESS_KEY --readyfile ~/sauce_is_ready \ | |
- || echo ERROR > ~/sauce_is_ready | |
+ || echo EXIT STATUS $? | tee /dev/stderr > ~/sauce_is_ready | |
} >$CIRCLE_ARTIFACTS/sauce-connect.log 2>&1 | |
: | |
background: true | |
@@ -86,14 +86,14 @@ test: | |
# Wait for tunnel to be ready (`make server` and the trivial Node server | |
# are much faster, no need to wait for them) | |
- - while [ ! -e ~/sauce_is_ready ]; do sleep 1; done; test "$(<~/sauce_is_ready)" != ERROR | |
+ - while [ ! -e ~/sauce_is_ready ]; do sleep 1; done; test -z "$(<~/sauce_is_ready)" | |
# Start taking screenshots in the background while the unit tests are running | |
- ? |- | |
{ | |
time { test -d node_modules/wd || npm install wd; } | |
time node script/screenshots.js http://localhost:8000/test/visual.html \ | |
- && touch ~/screenshots_are_ready || echo ERROR > ~/screenshots_are_ready: | |
+ && touch ~/screenshots_are_ready || echo EXIT STATUS $? | tee /dev/stderr > ~/screenshots_are_ready: | |
} >$CIRCLE_ARTIFACTS/screenshots.log 2>&1 | |
: | |
background: true | |
@@ -152,7 +152,7 @@ test: | |
[ "$(node -p 'require("./status.json")["js tests"][0].result.failures')" == 0 ] | |
# Wait for screenshots to be ready | |
- - while [ ! -e ~/screenshots_are_ready ]; do sleep 1; done; test "$(<~/screenshots_are_ready)" != ERROR: | |
+ - while [ ! -e ~/screenshots_are_ready ]; do sleep 1; done; test -z "$(<~/screenshots_are_ready)": | |
timeout: 300 | |
# Stitch together images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment