Skip to content

Commit

Permalink
Disable Windows binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
baransu committed Jan 10, 2019
1 parent b6a8be8 commit 06c183f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ deploy:

jobs:
include:
- stage: Wait for Windows binaries to become available
- stage: Wait for binaries to become available
addons:
apt:
sources: []
Expand Down
3 changes: 2 additions & 1 deletion ci/wait_for_builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ START_TIME=$(date "+%s")

## Wait at most 30 minutes for all platform binaries to be ready

for platform in linux-x64 darwin-x64 win-x64 win-x86; do
# win-x64 win-x86 - disable windows for now
for platform in linux-x64 darwin-x64; do
echo Checking binary for $platform

while ! $CURL $BASE_URL$platform.exe > /dev/null; do
Expand Down

0 comments on commit 06c183f

Please sign in to comment.