Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
22ce0022
Commit
22ce0022
authored
Sep 04, 2014
by
Andriy Yurchuk
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into build-go-verbose
parents
24d0eb43
306edbb7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
9 deletions
+11
-9
.travis.yml
.travis.yml
+2
-2
init.sls
cluster/saltbase/salt/etcd/init.sls
+3
-3
install-etcd.sh
hack/install-etcd.sh
+1
-0
test-go.sh
hack/test-go.sh
+4
-3
verify-boilerplate.sh
hack/verify-boilerplate.sh
+1
-1
No files found.
.travis.yml
View file @
22ce0022
...
...
@@ -15,8 +15,8 @@ install:
script
:
-
./hack/test-go.sh
-
PATH=$HOME/gopath/bin:$PATH ./hack/test-cmd.sh
-
PATH=$HOME/gopath/bin:
$HOME
/etcd/bin:$PATH ./hack/test-integration.sh
-
PATH=$HOME/gopath/bin:
./third_party/etcd/bin:
$PATH ./hack/test-cmd.sh
-
PATH=$HOME/gopath/bin:
./third_party
/etcd/bin:$PATH ./hack/test-integration.sh
notifications
:
irc
:
"
chat.freenode.net#google-containers"
cluster/saltbase/salt/etcd/init.sls
View file @
22ce0022
...
...
@@ -4,9 +4,9 @@ etcd-install:
- name: git://github.com/coreos/etcd
cmd.wait:
- cwd: /var/src/etcd
- name
s:
-
git checkout ab4bcc18694644d12f0c038339d8d039072502b1
-
./build
- name
: |
git checkout ab4bcc18694644d12f0c038339d8d039072502b1
./build
- env:
- PATH: {{ grains['path'] }}:/usr/local/bin
- watch:
...
...
hack/install-etcd.sh
View file @
22ce0022
...
...
@@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
cd
third_party
git clone https://github.com/coreos/etcd.git
cd
etcd
git checkout ab4bcc18694644d12f0c038339d8d039072502b1
...
...
hack/test-go.sh
View file @
22ce0022
...
...
@@ -46,11 +46,12 @@ find_test_pkgs() {
# there is currently a race in the coverage code in tip. Remove this when it is fixed
# see https://code.google.com/p/go/issues/detail?id=8630 for details.
if
[
[
"
${
TRAVIS_GO_VERSION
}
"
-eq
"tip"
]
]
;
then
if
[
"
${
TRAVIS_GO_VERSION
}
"
==
"tip"
]
;
then
KUBE_COVER
=
""
else
# -covermode=atomic becomes default with -race in Go >=1.3
KUBE_COVER
=
${
KUBE_COVER
:-
-cover -covermode=atomic
}
fi
# -covermode=atomic becomes default with -race in Go >=1.3
KUBE_COVER
=
${
KUBE_COVER
:-
-cover -covermode=atomic
}
KUBE_TIMEOUT
=
${
KUBE_TIMEOUT
:-
-timeout 30s
}
cd
"
${
KUBE_TARGET
}
"
...
...
hack/verify-boilerplate.sh
View file @
22ce0022
...
...
@@ -18,7 +18,7 @@ REPO_ROOT="$(cd "$(dirname "$0")/../" && pwd -P)"
result
=
0
gofiles
=
"
$(
find
${
REPO_ROOT
}
-type
f |
grep
"[.]go$"
|
grep
-v
"Godeps/
\|
third_party/
\|
release/
\|
_?output/|target/"
)
"
gofiles
=
"
$(
find
${
REPO_ROOT
}
-type
f |
grep
"[.]go$"
|
grep
-v
"Godeps/
\|
third_party/
\|
release/
\|
_?output/|target/"
)
"
for
file
in
${
gofiles
}
;
do
if
[[
"
$(${
REPO_ROOT
}
/hooks/boilerplate.sh
"
${
file
}
"
)
"
-eq
"0"
]]
;
then
echo
"Boilerplate header is wrong for:
${
file
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment