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
529cfd14
Commit
529cfd14
authored
Jan 22, 2019
by
tanshanshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix shellcheck failure
parent
dc3edee5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
17 deletions
+13
-17
.shellcheck_failures
hack/.shellcheck_failures
+0
-4
dev-build-and-push.sh
hack/dev-build-and-push.sh
+3
-4
dev-build-and-up.sh
hack/dev-build-and-up.sh
+4
-3
dev-push-conformance.sh
hack/dev-push-conformance.sh
+3
-3
dev-push-hyperkube.sh
hack/dev-push-hyperkube.sh
+3
-3
No files found.
hack/.shellcheck_failures
View file @
529cfd14
...
...
@@ -56,10 +56,6 @@
./hack/build-cross.sh
./hack/build-go.sh
./hack/cherry_pick_pull.sh
./hack/dev-build-and-push.sh
./hack/dev-build-and-up.sh
./hack/dev-push-conformance.sh
./hack/dev-push-hyperkube.sh
./hack/e2e-internal/e2e-cluster-size.sh
./hack/e2e-internal/e2e-down.sh
./hack/e2e-internal/e2e-grow-cluster.sh
...
...
hack/dev-build-and-push.sh
View file @
529cfd14
...
...
@@ -20,12 +20,11 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
# Build a dev release
make
-f
${
KUBE_ROOT
}
/Makefile quick-release
if
[
"
$?
"
!=
"0"
]
;
then
if
!
make
-f
"
${
KUBE_ROOT
}
"
/Makefile quick-release
then
echo
"Building a release failed!"
exit
1
fi
...
...
hack/dev-build-and-up.sh
View file @
529cfd14
...
...
@@ -21,12 +21,13 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
# Build a dev release
make
-f
${
KUBE_ROOT
}
/Makefile quick-release
if
[
"
$?
"
!=
"0"
]
;
then
if
!
make
-f
"
${
KUBE_ROOT
}
"
/Makefile quick-release
then
echo
"Building the release failed!"
exit
1
fi
...
...
hack/dev-push-conformance.sh
View file @
529cfd14
...
...
@@ -26,16 +26,16 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
"
$(
dirname
"
${
BASH_SOURCE
}
"
)
/.."
KUBE_ROOT
=
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/.."
source
"
${
KUBE_ROOT
}
/build/common.sh"
if
[[
-z
"
${
REGISTRY
:-}
"
]]
;
then
echo
"REGISTRY must be set"
exit
-
1
exit
1
fi
if
[[
-z
"
${
VERSION
:-}
"
]]
;
then
echo
"VERSION must be set"
exit
-
1
exit
1
fi
IMAGE
=
"
${
REGISTRY
}
/conformance-amd64:
${
VERSION
}
"
...
...
hack/dev-push-hyperkube.sh
View file @
529cfd14
...
...
@@ -26,16 +26,16 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
"
$(
dirname
"
${
BASH_SOURCE
}
"
)
/.."
KUBE_ROOT
=
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/.."
source
"
${
KUBE_ROOT
}
/build/common.sh"
if
[[
-z
"
${
REGISTRY
:-}
"
]]
;
then
echo
"REGISTRY must be set"
exit
-
1
exit
1
fi
if
[[
-z
"
${
VERSION
:-}
"
]]
;
then
echo
"VERSION must be set"
exit
-
1
exit
1
fi
IMAGE
=
"
${
REGISTRY
}
/hyperkube-amd64:
${
VERSION
}
"
...
...
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