mirror of https://github.com/knative/client.git
Combine update deps actions format manually (#1484)
* upgrade to latest dependencies bumping knative.dev/eventing ff4bc40...5f69768: > 5f69768 upgrade to latest dependencies (# 5817) > a6a819d upgrade to latest dependencies (# 5812) bumping knative.dev/networking c2191da...91e7d04: > 91e7d04 upgrade to latest dependencies (# 531) > 16ef524 upgrade to latest dependencies (# 529) > cc26c45 Update actions (# 530) > 0c6b765 Deprecate httpProtocol: "Disabled" in config-network (# 528) bumping knative.dev/pkg fa2f8f1...3463dd7: > 3463dd7 upgrade to latest dependencies (# 2315) > a5bb759 upgrade to latest dependencies (# 2314) > e61a20d Update actions (# 2313) > 0e24b49 Format go code (# 2312) bumping knative.dev/hack 815cd31...47ac3b0: > 47ac3b0 Split build tags that are in a comma separated list (# 83) > 8687668 [# 50] Add error message when Bash < 4 (# 79) > 8d79600 Fixes # 81 (# 82) > 51582ce fix misspelling functionallity -> functionality (# 78) > 675e1fd Correctly specify the user when creating clusterrolebinding for kind (# 80) bumping knative.dev/serving 7c6d4bc...30087cd: > 30087cd upgrade to latest dependencies (# 12145) > e5d8560 Format go code (# 12139) > c9b2e25 upgrade to latest dependencies (# 12141) > ebdd09e Update actions (# 12140) > caced61 Update net-certmanager nightly (# 12138) > c6f1707 Add logic to retry pause/resume for pod freezer (# 12049) > 0780c10 Trust k8s readiness signal (# 12086) > 0592224 Update net-kourier nightly (# 12135) > 1cac17a Fix HTTP Redirect test for Contour (# 12124) > 8ecc7f9 Update net-istio nightly (# 12134) > f37a630 Update net-certmanager nightly (# 12133) > 04efc1e Update net-kourier nightly (# 12128) > 8cc9b0d upgrade to latest dependencies (# 12132) * Update actions
This commit is contained in:
parent
b1e4132be8
commit
a736af7129
|
|
@ -42,10 +42,10 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Set up Go 1.16.x
|
- name: Set up Go 1.17.x
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.17.x
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
name: Build
|
name: Build
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.16.x]
|
go-version: [1.17.x]
|
||||||
platform: [ubuntu-latest]
|
platform: [ubuntu-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
@ -56,6 +56,7 @@ jobs:
|
||||||
grep -v '^./hack/' | \
|
grep -v '^./hack/' | \
|
||||||
grep -v '^./third_party' | \
|
grep -v '^./third_party' | \
|
||||||
cut -f3 -d' ' | \
|
cut -f3 -d' ' | \
|
||||||
|
tr ',' '\n' | \
|
||||||
sort | uniq | \
|
sort | uniq | \
|
||||||
grep -v '^!' | \
|
grep -v '^!' | \
|
||||||
tr '\n' ' ')"
|
tr '\n' ' ')"
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
name: Unit Tests
|
name: Unit Tests
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.16.x]
|
go-version: [1.17.x]
|
||||||
platform: [ubuntu-latest]
|
platform: [ubuntu-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
@ -52,6 +52,12 @@ jobs:
|
||||||
- name: Merge upstream
|
- name: Merge upstream
|
||||||
if: github.event_name == 'pull_request'
|
if: github.event_name == 'pull_request'
|
||||||
run: |
|
run: |
|
||||||
|
if ! git config user.name > /dev/null; then
|
||||||
|
git config user.name "John Doe"
|
||||||
|
fi
|
||||||
|
if ! git config user.email > /dev/null; then
|
||||||
|
git config user.email "johndoe@localhost"
|
||||||
|
fi
|
||||||
git remote add upstream https://github.com/${{ github.repository }}.git
|
git remote add upstream https://github.com/${{ github.repository }}.git
|
||||||
git fetch upstream ${{ github.base_ref }}
|
git fetch upstream ${{ github.base_ref }}
|
||||||
git pull --no-rebase --no-commit upstream ${{ github.base_ref }}
|
git pull --no-rebase --no-commit upstream ${{ github.base_ref }}
|
||||||
|
|
|
||||||
|
|
@ -54,10 +54,10 @@ jobs:
|
||||||
echo "SLACK_WEBHOOK=exists" >> $GITHUB_ENV
|
echo "SLACK_WEBHOOK=exists" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Set up Go 1.16.x
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.17.x
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: GO111MODULE=on go get knative.dev/test-infra/buoy@main
|
run: GO111MODULE=on go get knative.dev/test-infra/buoy@main
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ jobs:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.17.x
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: GO111MODULE=on go get k8s.io/release/cmd/release-notes
|
run: GO111MODULE=on go get k8s.io/release/cmd/release-notes
|
||||||
|
|
|
||||||
|
|
@ -40,10 +40,10 @@ jobs:
|
||||||
importpath: golang.org/x/tools/cmd/goimports
|
importpath: golang.org/x/tools/cmd/goimports
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go 1.16.x
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.17.x
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
|
@ -89,10 +89,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go 1.16.x
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.17.x
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
name: Verify Deps and Codegen
|
name: Verify Deps and Codegen
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.16.x]
|
go-version: [1.17.x]
|
||||||
platform: [ubuntu-latest]
|
platform: [ubuntu-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
|
||||||
10
go.mod
10
go.mod
|
|
@ -18,10 +18,10 @@ require (
|
||||||
k8s.io/cli-runtime v0.21.4
|
k8s.io/cli-runtime v0.21.4
|
||||||
k8s.io/client-go v0.21.4
|
k8s.io/client-go v0.21.4
|
||||||
k8s.io/code-generator v0.21.4
|
k8s.io/code-generator v0.21.4
|
||||||
knative.dev/eventing v0.26.1-0.20211013181948-ff4bc408741a
|
knative.dev/eventing v0.26.1-0.20211018070726-5f69768e8d01
|
||||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c
|
knative.dev/hack v0.0.0-20211018110626-47ac3b032e60
|
||||||
knative.dev/networking v0.0.0-20211013102347-c2191da19792
|
knative.dev/networking v0.0.0-20211018053525-91e7d042db3d
|
||||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b
|
knative.dev/pkg v0.0.0-20211018071527-3463dd75659d
|
||||||
knative.dev/serving v0.26.1-0.20211013211843-7c6d4bc5f294
|
knative.dev/serving v0.26.1-0.20211018070726-30087cd94810
|
||||||
sigs.k8s.io/yaml v1.3.0
|
sigs.k8s.io/yaml v1.3.0
|
||||||
)
|
)
|
||||||
|
|
|
||||||
26
go.sum
26
go.sum
|
|
@ -1668,21 +1668,25 @@ k8s.io/legacy-cloud-providers v0.21.0/go.mod h1:bNxo7gDg+PGkBmT/MFZswLTWdSWK9kAl
|
||||||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||||
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 h1:0T5IaWHO3sJTEmCP6mUlBvMukxPKUQWqiI/YuiBNMiQ=
|
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 h1:0T5IaWHO3sJTEmCP6mUlBvMukxPKUQWqiI/YuiBNMiQ=
|
||||||
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||||
knative.dev/caching v0.0.0-20211007063428-6f05d8a94ca1/go.mod h1:fSrbEDDid/bmIsfE3PurIN/lzWlDVMTlahgDMYp/Q8o=
|
knative.dev/caching v0.0.0-20211015211723-5bfedd5e159d/go.mod h1:9oK2qXCxiLc4eLw+Stv7F152deaJjCuvPQK3PlDKqL4=
|
||||||
knative.dev/eventing v0.26.1-0.20211013181948-ff4bc408741a h1:SKCjg0rBaGshvwHZHkhdTq8tamYyyXCwuutH+LWYqXM=
|
knative.dev/eventing v0.26.1-0.20211018070726-5f69768e8d01 h1:gzG38CZ6vxmsZ6gReQzap/vADWuqRA42PhYnEI6in/g=
|
||||||
knative.dev/eventing v0.26.1-0.20211013181948-ff4bc408741a/go.mod h1:YwdAAjLecPcaZkpyaNH3Ajn7kCzsfsvMGYS2hyC+R+I=
|
knative.dev/eventing v0.26.1-0.20211018070726-5f69768e8d01/go.mod h1:z6k4VtzllGqq75navnxXzbRvZ2vX5rIjHFyBsoIM6G8=
|
||||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c h1:nOXoDWAAItwr4o0dp3nHr6skgpVD4IvME/UX84YNl5k=
|
|
||||||
knative.dev/hack v0.0.0-20210806075220-815cd312d65c/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
knative.dev/hack v0.0.0-20210806075220-815cd312d65c/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||||
knative.dev/hack/schema v0.0.0-20210806075220-815cd312d65c/go.mod h1:ffjwmdcrH5vN3mPhO8RrF2KfNnbHeCE2C60A+2cv3U0=
|
knative.dev/hack v0.0.0-20211015200324-86876688e735/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||||
knative.dev/networking v0.0.0-20211013102347-c2191da19792 h1:YZLMb/sd/vKZ0b9J+o+GW6oB+GO62c/52tzCS5MJKQQ=
|
knative.dev/hack v0.0.0-20211018110626-47ac3b032e60 h1:wLv7s/AGWmv4Y6GhsDNP62BYFfz/xgiM+JylTD201eo=
|
||||||
knative.dev/networking v0.0.0-20211013102347-c2191da19792/go.mod h1:GmXOFNLjluwOsC/4C2zqCEnPImANg9cAPJwn3otQrTQ=
|
knative.dev/hack v0.0.0-20211018110626-47ac3b032e60/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||||
|
knative.dev/hack/schema v0.0.0-20211015200324-86876688e735/go.mod h1:ffjwmdcrH5vN3mPhO8RrF2KfNnbHeCE2C60A+2cv3U0=
|
||||||
|
knative.dev/networking v0.0.0-20211015221723-16ef52411606/go.mod h1:Jw3MjEG/651SEjwgEtG5hNJ5PfID6goeL9kkdDx5sMo=
|
||||||
|
knative.dev/networking v0.0.0-20211018053525-91e7d042db3d h1:FbtgRs7YxJ275jZar1XsvYZzsix0iYwhnPeOoTQZct0=
|
||||||
|
knative.dev/networking v0.0.0-20211018053525-91e7d042db3d/go.mod h1:Fhmiwrv7fpCLPB73mbYqZfgEzoz8hL6K/hV7KpXMeGY=
|
||||||
knative.dev/pkg v0.0.0-20210914164111-4857ab6939e3/go.mod h1:jMSqkNMsrzuy+XR4Yr/BMy7SDVbUOl3KKB6+5MR+ZU8=
|
knative.dev/pkg v0.0.0-20210914164111-4857ab6939e3/go.mod h1:jMSqkNMsrzuy+XR4Yr/BMy7SDVbUOl3KKB6+5MR+ZU8=
|
||||||
knative.dev/pkg v0.0.0-20211006213726-9179f78dcf97/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
|
||||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b h1:k7qT8TtdbyU4koLF745VoBaM5EpUQlV2f13syN8f5L0=
|
|
||||||
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
||||||
|
knative.dev/pkg v0.0.0-20211015194524-a5bb75923981/go.mod h1:r27D20afKNeK+9aNOg+0qMv8JgQcyeP+CAYQIR1jEQY=
|
||||||
|
knative.dev/pkg v0.0.0-20211018071527-3463dd75659d h1:gMbN3NySb6cm51cPmBiBQ2rg+gvghmosOloMkFKCRgw=
|
||||||
|
knative.dev/pkg v0.0.0-20211018071527-3463dd75659d/go.mod h1:KztVeIX2/Sp2PNRZmqjVe16bweUjLsCQKNKp36tAnSM=
|
||||||
knative.dev/reconciler-test v0.0.0-20210930064245-45904ca4383d/go.mod h1:6yDmb26SINSmgw6wVy9qQwgRMewiW8ddkkwGLR0ZvOY=
|
knative.dev/reconciler-test v0.0.0-20210930064245-45904ca4383d/go.mod h1:6yDmb26SINSmgw6wVy9qQwgRMewiW8ddkkwGLR0ZvOY=
|
||||||
knative.dev/serving v0.26.1-0.20211013211843-7c6d4bc5f294 h1:bdr0ZdE3rvCR4zqGbfuns9vUj2vz8HJftVbT2vfNjzQ=
|
knative.dev/serving v0.26.1-0.20211018070726-30087cd94810 h1:+vAJAmylabZ9/gKyoTYBpF2QSgZ3r7rl4m0lq5hIRlc=
|
||||||
knative.dev/serving v0.26.1-0.20211013211843-7c6d4bc5f294/go.mod h1:PQOzRmFNSiZ36OQbPvnA2ZOj33rUTva0Mrs1qPgsG6I=
|
knative.dev/serving v0.26.1-0.20211018070726-30087cd94810/go.mod h1:BAx9nDdxOevctU8XPpp6smO+xaHxok2vPcnduGMZJgs=
|
||||||
pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
|
pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
|
||||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build tools
|
||||||
// +build tools
|
// +build tools
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
//go:build !windows
|
||||||
// +build !windows
|
// +build !windows
|
||||||
|
|
||||||
package plugin
|
package plugin
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing && !serving
|
||||||
// +build !eventing
|
// +build e2e,!eventing,!serving
|
||||||
// +build !serving
|
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving && !project_admin
|
||||||
// +build !serving
|
// +build e2e,!serving,!project_admin
|
||||||
// +build !project_admin
|
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
//go:build tekton
|
||||||
// +build tekton
|
// +build tekton
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !eventing
|
||||||
// +build !eventing
|
// +build e2e,!eventing
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build e2e
|
//go:build e2e && !serving
|
||||||
// +build !serving
|
// +build e2e,!serving
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
//go:build e2e
|
||||||
// +build e2e
|
// +build e2e
|
||||||
|
|
||||||
package e2e
|
package e2e
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,6 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// package hack is a collection of scripts used to bootstrap CI processes and
|
// package hack is a collection of scripts used to bootstrap CI processes and
|
||||||
// other vital entrypoint functionallity.
|
// other vital entrypoint functionality.
|
||||||
|
|
||||||
package hack
|
package hack
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ function acquire_cluster_admin_role() {
|
||||||
--clusterrole=cluster-admin --user="$(gcloud config get-value core/account)"
|
--clusterrole=cluster-admin --user="$(gcloud config get-value core/account)"
|
||||||
else
|
else
|
||||||
kubectl create clusterrolebinding cluster-admin-binding \
|
kubectl create clusterrolebinding cluster-admin-binding \
|
||||||
--clusterrole=cluster-admin --user="${USER}"
|
--clusterrole=cluster-admin --user="prow"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,12 @@
|
||||||
# to be used in test scripts and the like. It doesn't do anything when
|
# to be used in test scripts and the like. It doesn't do anything when
|
||||||
# called from command line.
|
# called from command line.
|
||||||
|
|
||||||
|
# Exit early with a message if Bash version is below 4
|
||||||
|
if [ "${BASH_VERSINFO:-0}" -le 4 ]; then
|
||||||
|
echo "library.sh script needs Bash version >=4 to run"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# GCP project where all tests related resources live
|
# GCP project where all tests related resources live
|
||||||
readonly KNATIVE_TESTS_PROJECT=knative-tests
|
readonly KNATIVE_TESTS_PROJECT=knative-tests
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,7 @@ function default_build_test_runner() {
|
||||||
local tags
|
local tags
|
||||||
tags="$(grep -r '// +build' . \
|
tags="$(grep -r '// +build' . \
|
||||||
| grep -v '^./vendor/' | grep -v '^./hack/' | grep -v '^./third_party' \
|
| grep -v '^./vendor/' | grep -v '^./hack/' | grep -v '^./third_party' \
|
||||||
| cut -f3 -d' ' | sort | uniq | tr '\n' ' ')"
|
| cut -f3 -d' ' | tr ',' '\n' | sort | uniq | tr '\n' ' ')"
|
||||||
local tagged_pkgs
|
local tagged_pkgs
|
||||||
tagged_pkgs="$(grep -r '// +build' . \
|
tagged_pkgs="$(grep -r '// +build' . \
|
||||||
| grep -v '^./vendor/' | grep -v '^./hack/' | grep -v '^./third_party' \
|
| grep -v '^./vendor/' | grep -v '^./hack/' | grep -v '^./third_party' \
|
||||||
|
|
@ -307,7 +307,7 @@ function main() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ -z $1 ]] && set -- "--all-tests"
|
[[ -z ${1:-} ]] && set -- "--all-tests"
|
||||||
|
|
||||||
local TESTS_TO_RUN=()
|
local TESTS_TO_RUN=()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build tools
|
||||||
// +build tools
|
// +build tools
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !windows
|
||||||
// +build !windows
|
// +build !windows
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !ignore_autogenerated
|
||||||
// +build !ignore_autogenerated
|
// +build !ignore_autogenerated
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -728,7 +728,7 @@ k8s.io/utils/buffer
|
||||||
k8s.io/utils/integer
|
k8s.io/utils/integer
|
||||||
k8s.io/utils/pointer
|
k8s.io/utils/pointer
|
||||||
k8s.io/utils/trace
|
k8s.io/utils/trace
|
||||||
# knative.dev/eventing v0.26.1-0.20211013181948-ff4bc408741a
|
# knative.dev/eventing v0.26.1-0.20211018070726-5f69768e8d01
|
||||||
## explicit
|
## explicit
|
||||||
knative.dev/eventing/pkg/apis/config
|
knative.dev/eventing/pkg/apis/config
|
||||||
knative.dev/eventing/pkg/apis/duck
|
knative.dev/eventing/pkg/apis/duck
|
||||||
|
|
@ -754,10 +754,10 @@ knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1
|
||||||
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1/fake
|
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1/fake
|
||||||
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1beta2
|
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1beta2
|
||||||
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1beta2/fake
|
knative.dev/eventing/pkg/client/clientset/versioned/typed/sources/v1beta2/fake
|
||||||
# knative.dev/hack v0.0.0-20210806075220-815cd312d65c
|
# knative.dev/hack v0.0.0-20211018110626-47ac3b032e60
|
||||||
## explicit
|
## explicit
|
||||||
knative.dev/hack
|
knative.dev/hack
|
||||||
# knative.dev/networking v0.0.0-20211013102347-c2191da19792
|
# knative.dev/networking v0.0.0-20211018053525-91e7d042db3d
|
||||||
## explicit
|
## explicit
|
||||||
knative.dev/networking/pkg
|
knative.dev/networking/pkg
|
||||||
knative.dev/networking/pkg/apis/networking
|
knative.dev/networking/pkg/apis/networking
|
||||||
|
|
@ -765,7 +765,7 @@ knative.dev/networking/pkg/apis/networking/v1alpha1
|
||||||
knative.dev/networking/pkg/client/clientset/versioned
|
knative.dev/networking/pkg/client/clientset/versioned
|
||||||
knative.dev/networking/pkg/client/clientset/versioned/scheme
|
knative.dev/networking/pkg/client/clientset/versioned/scheme
|
||||||
knative.dev/networking/pkg/client/clientset/versioned/typed/networking/v1alpha1
|
knative.dev/networking/pkg/client/clientset/versioned/typed/networking/v1alpha1
|
||||||
# knative.dev/pkg v0.0.0-20211013152848-fa2f8f19557b
|
# knative.dev/pkg v0.0.0-20211018071527-3463dd75659d
|
||||||
## explicit
|
## explicit
|
||||||
knative.dev/pkg/apis
|
knative.dev/pkg/apis
|
||||||
knative.dev/pkg/apis/duck
|
knative.dev/pkg/apis/duck
|
||||||
|
|
@ -814,7 +814,7 @@ knative.dev/pkg/tracing/config
|
||||||
knative.dev/pkg/tracing/propagation
|
knative.dev/pkg/tracing/propagation
|
||||||
knative.dev/pkg/tracing/propagation/tracecontextb3
|
knative.dev/pkg/tracing/propagation/tracecontextb3
|
||||||
knative.dev/pkg/tracker
|
knative.dev/pkg/tracker
|
||||||
# knative.dev/serving v0.26.1-0.20211013211843-7c6d4bc5f294
|
# knative.dev/serving v0.26.1-0.20211018070726-30087cd94810
|
||||||
## explicit
|
## explicit
|
||||||
knative.dev/serving/pkg/apis/autoscaling
|
knative.dev/serving/pkg/apis/autoscaling
|
||||||
knative.dev/serving/pkg/apis/autoscaling/v1alpha1
|
knative.dev/serving/pkg/apis/autoscaling/v1alpha1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue