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
150ed6a4
Commit
150ed6a4
authored
Oct 22, 2015
by
Jeff Lowdermilk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dockerfile for jenkins build/test
To allow jenkins to run verify/unit/cmd/integration tests in a container.
parent
80be9836
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
127 additions
and
0 deletions
+127
-0
gotest-pr.sh
hack/jenkins/gotest-pr.sh
+34
-0
Dockerfile
hack/jenkins/test-image/Dockerfile
+32
-0
run.sh
hack/jenkins/test-image/run.sh
+61
-0
No files found.
hack/jenkins/gotest-pr.sh
0 → 100755
View file @
150ed6a4
#!/bin/bash
# Copyright 2015 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set
-o
errexit
set
-o
nounset
set
-o
pipefail
set
-o
xtrace
export
REPO_DIR
=
${
REPO_DIR
:-$(
pwd
)}
# Produce a JUnit-style XML test report for Jenkins.
export
KUBE_JUNIT_REPORT_DIR
=
${
WORKSPACE
}
/_artifacts
# Run the kubekins container, mapping in docker (so we can launch containers)
# and the repo directory
docker run
-v
/var/run/docker.sock:/var/run/docker.sock
\
-v
"
$(
which docker
)
"
:/bin/docker
\
-v
"
${
REPO_DIR
}
"
:/go/src/k8s.io/kubernetes
\
-v
"
${
KUBE_JUNIT_REPORT_DIR
}
"
:/workspace/artifacts
\
-it
kubekins-test
\
bash
-c
"cd kubernetes && /workspace/run.sh"
hack/jenkins/test-image/Dockerfile
0 → 100644
View file @
150ed6a4
# Copyright 2015 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This file creates a build environment for building and running kubernetes
# unit and integration tests
FROM
golang:1.4
MAINTAINER
jeff lowdermilk <jeffml@google.com>
ENV
KUBE_TEST_API_VERSIONS v1,extensions/v1beta1
ENV
KUBE_TEST_ETCD_PREFIXES registry
ENV
WORKSPACE /workspace
WORKDIR
/workspace
ADD
run.sh ./
RUN
apt-get
-o
Acquire::Check-Valid-Until
=
false
update
&&
apt-get
install
-y
rsync
RUN
mkdir
-p
/go/src/k8s.io/kubernetes
RUN
ln
-s
/go/src/k8s.io/kubernetes /workspace/kubernetes
RUN
/bin/bash
hack/jenkins/test-image/run.sh
0 → 100755
View file @
150ed6a4
#!/bin/bash
# Copyright 2015 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set
-o
errexit
set
-o
nounset
set
-o
pipefail
set
-o
xtrace
export
PATH
=
${
GOPATH
}
/bin:
${
PWD
}
/third_party/etcd:/usr/local/go/bin:
${
PATH
}
./hack/install-etcd.sh
go get
-u
github.com/jstemmer/go-junit-report
go get golang.org/x/tools/cmd/cover
go get github.com/mattn/goveralls
go get github.com/tools/godep
go get github.com/jstemmer/go-junit-report
# Enable the Go race detector.
export
KUBE_RACE
=
-race
# Disable coverage report
export
KUBE_COVER
=
"n"
# Produce a JUnit-style XML test report for Jenkins.
export
KUBE_JUNIT_REPORT_DIR
=
${
WORKSPACE
}
/artifacts
# Save the verbose stdout as well.
export
KUBE_KEEP_VERBOSE_TEST_OUTPUT
=
y
export
KUBE_GOVERALLS_BIN
=
"
${
GOPATH
}
/bin/goveralls"
export
KUBE_TIMEOUT
=
'-timeout 300s'
export
KUBE_COVERPROCS
=
8
export
KUBE_INTEGRATION_TEST_MAX_CONCURRENCY
=
4
export
LOG_LEVEL
=
4
./hack/verify-gofmt.sh
./hack/verify-boilerplate.sh
./hack/verify-description.sh
./hack/verify-flags-underscore.py
./hack/verify-generated-conversions.sh
./hack/verify-generated-deep-copies.sh
./hack/verify-generated-docs.sh
./hack/verify-generated-swagger-docs.sh
./hack/verify-swagger-spec.sh
./hack/verify-linkcheck.sh
./hack/test-go.sh
--
-p
=
2
./hack/test-cmd.sh
./hack/test-integration.sh
./hack/test-update-storage-objects.sh
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