Skip to content
This repository was archived by the owner on May 6, 2020. It is now read-only.

Commit 1d2a6a3

Browse files
authored
Merge pull request #129 from jcvenegas/release-301
release: Clear Containers 3.0.1
2 parents 28b5af4 + 137be00 commit 1d2a6a3

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.ci/go-test.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ script_dir=$(cd `dirname $0`; pwd)
44
root_dir=`dirname $script_dir`
55

66
test_packages=('.;.,./client' './api;./api')
7-
go_test_flags="-v -race -timeout 2s"
7+
8+
# Set default test run timeout value.
9+
#
10+
# CC_GO_TEST_TIMEOUT can be set to any value accepted by
11+
# "go test -timeout X"
12+
timeout_value=${CC_GO_TEST_TIMEOUT:-10s}
13+
14+
go_test_flags="-v -race -timeout $timeout_value"
815

916
echo Running go test on packages "'$test_packages'" with flags "'$go_test_flags'"
1017

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# The version should be bumped and the '+' sign removed just before tagging a
77
# new release.
88
# A '+' sign should be added in the commit just after tagging a new release.
9-
VERSION := 3.0.0-beta.2+
9+
VERSION := 3.0.1+
1010

1111
DESTDIR :=
1212
PREFIX := /usr

0 commit comments

Comments
 (0)