Pārlūkot izejas kodu

Merge pull request #43144 from thaJeztah/remove_unused_hack_scripts

Remove some unused ci scripts
Sebastiaan van Stijn 3 gadi atpakaļ
vecāks
revīzija
d7acf03665
7 mainītis faili ar 0 papildinājumiem un 159 dzēšanām
  1. 0 10
      hack/ci/arm
  2. 0 9
      hack/ci/experimental
  3. 0 14
      hack/ci/janky
  4. 0 13
      hack/ci/master
  5. 0 6
      hack/ci/powerpc
  6. 0 6
      hack/ci/z
  7. 0 101
      poule.yml

+ 0 - 10
hack/ci/arm

@@ -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

+ 0 - 9
hack/ci/experimental

@@ -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

+ 0 - 14
hack/ci/janky

@@ -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

+ 0 - 13
hack/ci/master

@@ -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

+ 0 - 6
hack/ci/powerpc

@@ -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

+ 0 - 6
hack/ci/z

@@ -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

+ 0 - 101
poule.yml

@@ -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/<configuration>` 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",
-        }