From 2aa87dd0693c092a7277890cc34a371be24ac488 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 12 Jan 2024 17:31:17 -0800 Subject: [PATCH 1/3] update CI URL in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4960d94fd..a16637758 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -154,7 +154,7 @@ To destroy the local Kubernetes cluster, run `./hack/kind-down.sh`. ### Observing Tests on the Continuous Integration Environment -[CI](https://hush-house.pivotal.io/teams/tanzu-user-auth/pipelines/pinniped-pull-requests) +[CI](https://ci.pinniped.dev/teams/main/pipelines/pull-requests) will not be triggered on a pull request until the pull request is reviewed and approved for CI by a project [maintainer](MAINTAINERS.md). Once CI is triggered, the progress and results will appear on the Github page for that From 80b65619bfe420cd854bab752b626ed833575d72 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Tue, 16 Jan 2024 12:30:09 -0800 Subject: [PATCH 2/3] Increase the lint timeout in hack/module.sh for when CI workers get slow --- hack/module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/module.sh b/hack/module.sh index a897759a6..3cd2754a3 100755 --- a/hack/module.sh +++ b/hack/module.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright 2020-2023 the Pinniped contributors. All Rights Reserved. +# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 set -euo pipefail @@ -13,7 +13,7 @@ function tidy_cmd() { } function lint_cmd() { - echo "golangci-lint run --modules-download-mode=readonly --timeout=20m" + echo "golangci-lint run --modules-download-mode=readonly --timeout=30m" } function test_cmd() { From 6908c2ab6566954407eb8e773837646e0616cf0e Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 19 Jan 2024 09:15:46 -0800 Subject: [PATCH 3/3] disable dependabot for some things in favor of our own tooling --- .github/dependabot.yml | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c106b0f1c..a5bf10208 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,11 +2,6 @@ version: 2 updates: - - package-ecosystem: "gomod" - open-pull-requests-limit: 100 - directory: "/" - schedule: - interval: "daily" - package-ecosystem: "gomod" open-pull-requests-limit: 2 @@ -14,12 +9,21 @@ updates: schedule: interval: "daily" - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "daily" +# Our own CI job is responsible for updating this go.mod file now. +# - package-ecosystem: "gomod" +# open-pull-requests-limit: 100 +# directory: "/" +# schedule: +# interval: "daily" - - package-ecosystem: "docker" - directory: "/hack" # this should keep the FIPS dockerfile updated per https://github.com/dependabot/feedback/issues/145#issuecomment-414738498 - schedule: - interval: "daily" +# Our own CI job is responsible for updating this Docker file now. +# - package-ecosystem: "docker" +# directory: "/" +# schedule: +# interval: "daily" + +# Our own CI job is responsible for updating this Docker file now. +# - package-ecosystem: "docker" +# directory: "/hack" # this should keep the FIPS dockerfile updated per https://github.com/dependabot/feedback/issues/145#issuecomment-414738498 +# schedule: +# interval: "daily"