Browse Source

build: skip sauce by default in release script

Evan You 8 years ago
parent
commit
1eea1a98f4
1 changed files with 7 additions and 4 deletions
  1. 7 4
      build/release.sh

+ 7 - 4
build/release.sh

@@ -20,10 +20,13 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
     npm run test:ssr
   fi
 
-  if [[ -z $SKIP_SAUCE ]]; then
-    export SAUCE_BUILD_ID=$VERSION:`date +"%s"`
-    npm run test:sauce
-  fi
+  # Sauce Labs tests has a decent change of failing
+  # so we usually manually run them before running the release script.
+
+  # if [[ -z $SKIP_SAUCE ]]; then
+  #   export SAUCE_BUILD_ID=$VERSION:`date +"%s"`
+  #   npm run test:sauce
+  # fi
 
   # build
   VERSION=$VERSION npm run build