From 745700d2ef23287afd728b9664b6aae0e935c44a Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 12 Jan 2022 00:31:14 +0100 Subject: [PATCH 1/2] remove unused poule.yml this bot is no longer running, so we may as well remove the config file. Signed-off-by: Sebastiaan van Stijn --- poule.yml | 101 ------------------------------------------------------ 1 file changed, 101 deletions(-) delete mode 100644 poule.yml diff --git a/poule.yml b/poule.yml deleted file mode 100644 index 0407a20f20..0000000000 --- a/poule.yml +++ /dev/null @@ -1,101 +0,0 @@ -# Add a "status/0-triage" to every newly opened pull request. -- triggers: - pull_request: [ opened ] - operations: - - type: label - filters: { - ~labels: [ "status/0-triage", "status/1-design-review", "status/2-code-review", "status/3-docs-review", "status/4-merge" ], - } - settings: { - patterns: { - status/0-triage: [ ".*" ], - } - } - -# For every newly created or modified issue, assign label based on matching regexp using the `label` -# operation, as well as an Engine-specific version label using `version-label`. -- triggers: - issues: [ edited, opened, reopened ] - operations: - - type: label - settings: { - patterns: { - area/builder: [ "dockerfile", "docker build" ], - area/distribution: [ "docker login", "docker logout", "docker pull", "docker push", "docker search" ], - area/plugins: [ "docker plugin" ], - area/networking: [ "docker network", "ipvs", "vxlan" ], - area/runtime: [ "oci runtime error" ], - area/security/trust: [ "docker_content_trust" ], - area/swarm: [ "docker node", "docker swarm", "docker service create", "docker service inspect", "docker service logs", "docker service ls", "docker service ps", "docker service rm", "docker service scale", "docker service update" ], - platform/desktop: [ "docker for mac", "docker for windows" ], - platform/freebsd: [ "freebsd" ], - platform/windows: [ "nanoserver", "windowsservercore", "windows server" ], - platform/arm: [ "raspberry", "raspbian", "rpi", "beaglebone", "pine64" ], - } - } - - type: version-label - -# Labeling a PR with `rebuild/` triggers a rebuild job for the associated -# configuration. The label is automatically removed after the rebuild is initiated. There's no such -# thing as "templating" in this configuration, so we need one operation for each type of -# configuration that can be triggered. -- triggers: - pull_request: [ labeled ] - operations: - - type: rebuild - settings: { - # When configurations are empty, the `rebuild` operation rebuilds all the currently - # known statuses for that pull request. - configurations: [], - label: "rebuild/*", - } - - type: rebuild - settings: { - configurations: [ arm ], - label: "rebuild/arm", - } - - type: rebuild - settings: { - configurations: [ experimental ], - label: "rebuild/experimental", - } - - type: rebuild - settings: { - configurations: [ janky ], - label: "rebuild/janky", - } - - type: rebuild - settings: { - configurations: [ powerpc ], - label: "rebuild/powerpc", - } - - type: rebuild - settings: { - configurations: [ userns ], - label: "rebuild/userns", - } - - type: rebuild - settings: { - configurations: [ vendor ], - label: "rebuild/vendor", - } - - type: rebuild - settings: { - configurations: [ win2lin ], - label: "rebuild/win2lin", - } - - type: rebuild - settings: { - configurations: [ windowsRS1 ], - label: "rebuild/windowsRS1", - } - - type: rebuild - settings: { - configurations: [ windowsRS5 ], - label: "rebuild/windowsRS5-process", - } - - type: rebuild - settings: { - configurations: [ z ], - label: "rebuild/z", - } From 436abb458c195af3df4ea9102e54e4cd82ba22c9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 12 Jan 2022 00:38:02 +0100 Subject: [PATCH 2/2] hack/ci: remove unused entrypoint scripts Signed-off-by: Sebastiaan van Stijn --- hack/ci/arm | 10 ---------- hack/ci/experimental | 9 --------- hack/ci/janky | 14 -------------- hack/ci/master | 13 ------------- hack/ci/powerpc | 6 ------ hack/ci/z | 6 ------ 6 files changed, 58 deletions(-) delete mode 100755 hack/ci/arm delete mode 100755 hack/ci/experimental delete mode 100755 hack/ci/janky delete mode 100755 hack/ci/master delete mode 100755 hack/ci/powerpc delete mode 100755 hack/ci/z diff --git a/hack/ci/arm b/hack/ci/arm deleted file mode 100755 index 2c7109b8b6..0000000000 --- a/hack/ci/arm +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins arm CI build -set -eu -o pipefail - -hack/test/unit - -TEST_SKIP_INTEGRATION_CLI=1 hack/make.sh \ - binary-daemon \ - dynbinary \ - test-integration diff --git a/hack/ci/experimental b/hack/ci/experimental deleted file mode 100755 index 10297c7dc9..0000000000 --- a/hack/ci/experimental +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins experimental CI -set -eu -o pipefail - -export DOCKER_EXPERIMENTAL=1 - -hack/make.sh \ - binary-daemon \ - test-integration diff --git a/hack/ci/janky b/hack/ci/janky deleted file mode 100755 index ec48165896..0000000000 --- a/hack/ci/janky +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins janky CI build -set -eu -o pipefail - -hack/validate/default -hack/test/unit - -hack/make.sh \ - binary-daemon \ - dynbinary \ - test-docker-py \ - test-integration-flaky \ - test-integration \ - cross diff --git a/hack/ci/master b/hack/ci/master deleted file mode 100755 index 83182c69ec..0000000000 --- a/hack/ci/master +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins master CI build -set -eu -o pipefail - -hack/validate/default -hack/test/unit - -hack/make.sh \ - binary-daemon \ - dynbinary \ - test-docker-py \ - test-integration \ - cross diff --git a/hack/ci/powerpc b/hack/ci/powerpc deleted file mode 100755 index c36cf37dbf..0000000000 --- a/hack/ci/powerpc +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins powerpc CI build -set -eu -o pipefail - -hack/test/unit -hack/make.sh dynbinary test-integration diff --git a/hack/ci/z b/hack/ci/z deleted file mode 100755 index 5ba868e816..0000000000 --- a/hack/ci/z +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# Entrypoint for jenkins s390x (z) CI build -set -eu -o pipefail - -hack/test/unit -hack/make.sh dynbinary test-integration