File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ cd $(dirname $0)/..
77
88GO=${GO-go}
99
10- PKG=" github.com/k3s-io /k3s"
10+ PKG=" github.com/rancher /k3s"
1111PKG_CONTAINERD=" github.com/containerd/containerd"
1212PKG_K3S_CONTAINERD=" github.com/k3s-io/containerd"
1313PKG_CRICTL=" github.com/kubernetes-sigs/cri-tools/pkg"
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ PKG_TO_TEST=$(find ./pkg/ -type f -name "*_int_test.go" | sed -r 's|/[^/]+$||' |
1414for i in $PKG_TO_TEST ; do
1515 name=$( echo " ${i##*/ } " )
1616 echo $name
17- go test -c -v -ldflags " -X 'github.com/k3s-io /k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name .test $i -run Integration
17+ go test -c -v -ldflags " -X 'github.com/rancher /k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name .test $i -run Integration
1818done
1919
2020# Integration tests under /tests
2121PKG_TO_TEST=$( find ./tests/integration -type f -name " *_int_test.go" | sed -r ' s|/[^/]+$||' | sort -u)
2222for i in $PKG_TO_TEST ; do
2323 name=$( echo " ${i##*/ } " )
2424 echo $name
25- go test -c -v -ldflags " -X 'github.com/k3s-io /k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name .test $i -run Integration
25+ go test -c -v -ldflags " -X 'github.com/rancher /k3s/tests/util.existingServer=True'" -o dist/artifacts/k3s-integration-$name .test $i -run Integration
2626done
2727docker build -f ./tests/integration/Dockerfile.test -t $REPO .
2828docker save $REPO -o ./dist/artifacts/$REPO .tar
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ CMD_NAME=dist/artifacts/k3s${BIN_SUFFIX}
5252
5353" ${GO} " generate
5454LDFLAGS="
55- -X github.com/k3s-io /k3s/pkg/version.Version=$VERSION
56- -X github.com/k3s-io /k3s/pkg/version.GitCommit=${COMMIT: 0: 8}
55+ -X github.com/rancher /k3s/pkg/version.Version=$VERSION
56+ -X github.com/rancher /k3s/pkg/version.GitCommit=${COMMIT: 0: 8}
5757 -w -s
5858"
5959STATIC=" -extldflags '-static'"
You can’t perform that action at this time.
0 commit comments