Skip to content

Commit 1eea1a9

Browse files
committed
build: skip sauce by default in release script
1 parent e38d006 commit 1eea1a9

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Diff for: build/release.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
2020
npm run test:ssr
2121
fi
2222

23-
if [[ -z $SKIP_SAUCE ]]; then
24-
export SAUCE_BUILD_ID=$VERSION:`date +"%s"`
25-
npm run test:sauce
26-
fi
23+
# Sauce Labs tests has a decent change of failing
24+
# so we usually manually run them before running the release script.
25+
26+
# if [[ -z $SKIP_SAUCE ]]; then
27+
# export SAUCE_BUILD_ID=$VERSION:`date +"%s"`
28+
# npm run test:sauce
29+
# fi
2730

2831
# build
2932
VERSION=$VERSION npm run build

0 commit comments

Comments
 (0)