This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/artifacts/scripts/util.sh b/artifacts/scripts/util.sh | |
index e9e3d01..7875b46 100755 | |
--- a/artifacts/scripts/util.sh | |
+++ b/artifacts/scripts/util.sh | |
@@ -380,7 +380,7 @@ sync_repo() { | |
squash ${squash_commits} | |
# if there is no pending merge commit, update Godeps.json because this could be a target of tag | |
- if [ -z "${k_pending_merge_commit}" ]; then | |
+ if ! pick-incorrect-godep-changes ${k_mainline_commit} && [ -z "${k_pending_merge_commit}" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
cd $GOPATH/src/k8s.io | |
rm -rf cache.new | |
if [ ! -d cache ]; then | |
mkdir cache.new | |
pushd cache.new | |
for repo in $(ls -1 ../kubernetes/staging/src/k8s.io); do | |
git clone https://github.com/kubernetes/${repo}.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recursive-delete-patterns: | |
- BUILD | |
- "*/BUILD" | |
- BUILD.bazel | |
- "*/BUILD.bazel" | |
- Gopkg.toml | |
rules: | |
- destination: code-generator | |
branches: | |
- source: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
cd $GOPATH/src/k8s.io | |
rm -rf cache.new | |
if [ ! -d cache ]; then | |
mkdir cache.new | |
pushd cache.new | |
for repo in $(ls -1 ../kubernetes/staging/src/k8s.io); do | |
git clone https://github.com/kubernetes/${repo}.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
cd $GOPATH/src/k8s.io | |
rm -rf cache.new | |
if [ ! -d cache ]; then | |
mkdir cache.new | |
pushd cache.new | |
for repo in $(ls -1 ../kubernetes/staging/src/k8s.io); do | |
git clone https://github.com/kubernetes/${repo}.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
cd $GOPATH/src/k8s.io | |
rm -rf cache.new | |
if [ ! -d cache ]; then | |
mkdir cache.new | |
pushd cache.new | |
for repo in $(ls -1 ../kubernetes/staging/src/k8s.io); do | |
git clone https://github.com/kubernetes/${repo}.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recursive-delete-patterns: | |
- BUILD | |
- "*/BUILD" | |
- BUILD.bazel | |
- "*/BUILD.bazel" | |
- Gopkg.toml | |
rules: | |
- destination: apimachinery | |
library: true | |
branches: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recursive-delete-patterns: | |
- BUILD | |
- "*/BUILD" | |
- BUILD.bazel | |
- "*/BUILD.bazel" | |
- Gopkg.toml | |
rules: | |
- destination: apimachinery | |
library: true | |
branches: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is a generated file. Do not edit directly. | |
module k8s.io/sample-controller | |
go 1.13 | |
require ( | |
k8s.io/api v0.17.0-rc.2 | |
k8s.io/apimachinery v0.17.0-rc.2 | |
k8s.io/client-go v0.0.0-20191204083517-ea72ff2b5b2f |