We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0520cb9 commit 60d2d6aCopy full SHA for 60d2d6a
.semaphore.sh
@@ -0,0 +1,16 @@
1
+#!/usr/bin/env bash
2
+
3
+TEST_SUFFIX=$(date +%s | base64 | head -c 15)
4
5
+TEST_OPTS="RELEASE_TEST=y INTEGRATION=y PASSES='build unit release integration_e2e functional'"
6
+if [ "$TEST_ARCH" == "386" ]; then
7
+ TEST_OPTS="GOARCH=386 PASSES='build unit integration_e2e'"
8
+fi
9
10
+docker run \
11
+ --rm \
12
+ --volume=`pwd`:/go/src/github.com/coreos/etcd \
13
+ gcr.io/etcd-development/etcd-test:go1.8.5 \
14
+ /bin/bash -c "${TEST_OPTS} ./test 2>&1 | tee test-${TEST_SUFFIX}.log"
15
16
+! grep FAIL -A10 -B50 test-${TEST_SUFFIX}.log
.travis.yml
@@ -4,7 +4,7 @@ go_import_path: github.com/coreos/etcd
sudo: false
go:
- - 1.8.3
+ - 1.8.5
notifications:
on_success: never
0 commit comments