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
428a653f
Commit
428a653f
authored
Oct 01, 2014
by
Joe Beda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Normalize some of the boilerplate in each of the `build` commands.
parent
7a2d8fd0
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
30 deletions
+10
-30
copy-output.sh
build/copy-output.sh
+1
-3
make-binaries.sh
build/make-binaries.sh
+1
-3
make-build-image.sh
build/make-build-image.sh
+1
-3
make-clean.sh
build/make-clean.sh
+1
-3
make-cross.sh
build/make-cross.sh
+1
-3
make-run-image.sh
build/make-run-image.sh
+1
-3
release.sh
build/release.sh
+1
-3
run-integration.sh
build/run-integration.sh
+1
-3
run-tests.sh
build/run-tests.sh
+1
-3
shell.sh
build/shell.sh
+1
-3
No files found.
build/copy-output.sh
View file @
428a653f
...
...
@@ -19,9 +19,7 @@
# This is a no-op on Linux when the Docker daemon is local. This is only
# necessary on Mac OS X with boot2docker.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::copy_output
build/make-binaries.sh
View file @
428a653f
...
...
@@ -19,9 +19,7 @@
# This makes the docker build image, builds the binaries and copies them out
# of the docker container.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/make-build-image.sh
View file @
428a653f
...
...
@@ -21,9 +21,7 @@
# directory. It will then copy over the Dockerfile and build the kube-build
# image.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
build/make-clean.sh
View file @
428a653f
...
...
@@ -16,9 +16,7 @@
# Clean out the output directory on the docker host.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::clean_output
...
...
build/make-cross.sh
View file @
428a653f
...
...
@@ -19,9 +19,7 @@
# This makes the docker build image, builds the cross binaries and copies them
# out of the docker container.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/make-run-image.sh
View file @
428a653f
...
...
@@ -19,9 +19,7 @@
# This script will make the 'run image' after building all of the necessary
# binaries.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/release.sh
View file @
428a653f
...
...
@@ -18,9 +18,7 @@
# images and other build artifacts. All intermediate artifacts will be hosted
# publicly on Google Cloud Storage currently.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/run-integration.sh
View file @
428a653f
...
...
@@ -16,9 +16,7 @@
# Run the integration test.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/run-tests.sh
View file @
428a653f
...
...
@@ -16,9 +16,7 @@
# Run all of the golang unit tests.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
build/shell.sh
View file @
428a653f
...
...
@@ -18,9 +18,7 @@
#
# This container will have a snapshot of the current sources.
set
-e
source
$(
dirname
$0
)
/common.sh
source
$(
dirname
"
${
BASH_SOURCE
}
"
)
/common.sh
kube::build::verify_prereqs
kube::build::build_image
...
...
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