From 525b2605acaf25c4ab782e41d6896c691474403a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 2 May 2024 09:50:31 -0400 Subject: [PATCH 1/2] Disable GH CI --- .../ISSUE_TEMPLATE/release-checklist.md | 0 {.github => .github-tmp-disabled}/dependabot.yml | 0 {.github => .github-tmp-disabled}/labeler.yml | 0 {.github => .github-tmp-disabled}/workflows/bootc.yaml | 0 {.github => .github-tmp-disabled}/workflows/docs.yml | 0 {.github => .github-tmp-disabled}/workflows/labeler.yml | 0 {.github => .github-tmp-disabled}/workflows/release.yml | 0 {.github => .github-tmp-disabled}/workflows/rust.yml | 0 {.github => .github-tmp-disabled}/workflows/tests.yml | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename {.github => .github-tmp-disabled}/ISSUE_TEMPLATE/release-checklist.md (100%) rename {.github => .github-tmp-disabled}/dependabot.yml (100%) rename {.github => .github-tmp-disabled}/labeler.yml (100%) rename {.github => .github-tmp-disabled}/workflows/bootc.yaml (100%) rename {.github => .github-tmp-disabled}/workflows/docs.yml (100%) rename {.github => .github-tmp-disabled}/workflows/labeler.yml (100%) rename {.github => .github-tmp-disabled}/workflows/release.yml (100%) rename {.github => .github-tmp-disabled}/workflows/rust.yml (100%) rename {.github => .github-tmp-disabled}/workflows/tests.yml (100%) diff --git a/.github/ISSUE_TEMPLATE/release-checklist.md b/.github-tmp-disabled/ISSUE_TEMPLATE/release-checklist.md similarity index 100% rename from .github/ISSUE_TEMPLATE/release-checklist.md rename to .github-tmp-disabled/ISSUE_TEMPLATE/release-checklist.md diff --git a/.github/dependabot.yml b/.github-tmp-disabled/dependabot.yml similarity index 100% rename from .github/dependabot.yml rename to .github-tmp-disabled/dependabot.yml diff --git a/.github/labeler.yml b/.github-tmp-disabled/labeler.yml similarity index 100% rename from .github/labeler.yml rename to .github-tmp-disabled/labeler.yml diff --git a/.github/workflows/bootc.yaml b/.github-tmp-disabled/workflows/bootc.yaml similarity index 100% rename from .github/workflows/bootc.yaml rename to .github-tmp-disabled/workflows/bootc.yaml diff --git a/.github/workflows/docs.yml b/.github-tmp-disabled/workflows/docs.yml similarity index 100% rename from .github/workflows/docs.yml rename to .github-tmp-disabled/workflows/docs.yml diff --git a/.github/workflows/labeler.yml b/.github-tmp-disabled/workflows/labeler.yml similarity index 100% rename from .github/workflows/labeler.yml rename to .github-tmp-disabled/workflows/labeler.yml diff --git a/.github/workflows/release.yml b/.github-tmp-disabled/workflows/release.yml similarity index 100% rename from .github/workflows/release.yml rename to .github-tmp-disabled/workflows/release.yml diff --git a/.github/workflows/rust.yml b/.github-tmp-disabled/workflows/rust.yml similarity index 100% rename from .github/workflows/rust.yml rename to .github-tmp-disabled/workflows/rust.yml diff --git a/.github/workflows/tests.yml b/.github-tmp-disabled/workflows/tests.yml similarity index 100% rename from .github/workflows/tests.yml rename to .github-tmp-disabled/workflows/tests.yml From f8d42a26dbe376ffd42485f7952a8b94a88b066d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 2 May 2024 09:51:11 -0400 Subject: [PATCH 2/2] ci: Verify container env Signed-off-by: Colin Walters --- .cci.jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index d586edde6c..f6eacea849 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -9,6 +9,10 @@ stage("Build") { def n = 5 buildPod(memory: "2Gi", cpu: "${n}") { checkout scm + stage("Verify container env1") { + shwrap("env") + shwrap("""if test -z "\${container:-}"; then echo missing container env; sleep 15m; exit 1; fi""") + } stage("Static analysis") { shwrap("./ci/codestyle.sh") }