]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Revert last two patches
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 19 May 2023 19:15:03 +0000 (12:15 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 19 May 2023 19:15:03 +0000 (12:15 -0700)
Unintentionally pushed.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
.gitlab-ci.d/buildtest.yml
.gitlab-ci.d/container-template.yml
.gitlab-ci.d/default.yml [deleted file]
.gitlab-ci.d/opensbi.yml
.gitlab-ci.d/qemu-project.yml

index 35600b470bc311dc9ecf8bccc3f16f731e557b35..307cba1aab6d7abb4d046c5dd525f25371efe7b0 100644 (file)
@@ -98,7 +98,6 @@ crash-test-debian:
   needs:
     - job: build-system-debian
       artifacts: true
-  timeout: 90m
   variables:
     IMAGE: debian-amd64
   script:
index f55a9547410a6a80b332d8dff8e3eaa7873b64c6..519b8a94822fd7d43091b50a3e5371f9b6b894ed 100644 (file)
@@ -1,14 +1,14 @@
 .container_job_template:
   extends: .base_job_template
-  image: docker:20.10.16
+  image: docker:stable
   stage: containers
   services:
-    - docker:20.10.16-dind
+    - docker:dind
   before_script:
     - export TAG="$CI_REGISTRY_IMAGE/qemu/$NAME:latest"
     - export COMMON_TAG="$CI_REGISTRY/qemu-project/qemu/qemu/$NAME:latest"
     - apk add python3
-    - until docker info; do sleep 1; done
+    - docker info
     - docker login $CI_REGISTRY -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD"
   script:
     - echo "TAG:$TAG"
diff --git a/.gitlab-ci.d/default.yml b/.gitlab-ci.d/default.yml
deleted file mode 100644 (file)
index 292be8b..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-default:
-  tags:
-    - $RUNNER_TAG
index 5b0b47b57ba8a3a4eef531d01b8020e756a66b1f..9a651465d8a17cf52bb605732b31805412ae4387 100644 (file)
 docker-opensbi:
   extends: .opensbi_job_rules
   stage: containers
-  image: docker:20.10.16
+  image: docker:stable
   services:
-    - docker:20.10.16-dind
+    - docker:stable-dind
   variables:
     GIT_DEPTH: 3
     IMAGE_TAG: $CI_REGISTRY_IMAGE:opensbi-cross-build
+    # We don't use TLS
+    DOCKER_HOST: tcp://docker:2375
+    DOCKER_TLS_CERTDIR: ""
   before_script:
     - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-    - until docker info; do sleep 1; done
   script:
     - docker pull $IMAGE_TAG || true
     - docker build --cache-from $IMAGE_TAG --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
index 57b175f5c23998e557e84aba513112f9e1046379..a7ed447fe487ec23de12f6b4adf45ba77e596c81 100644 (file)
@@ -1,24 +1,7 @@
 # This file contains the set of jobs run by the QEMU project:
 # https://gitlab.com/qemu-project/qemu/-/pipelines
 
-variables:
-  RUNNER_TAG: ""
-
-workflow:
-  rules:
-    # Set additional variables when running on Kubernetes.
-    # https://wiki.qemu.org/Testing/CI/KubernetesRunners
-    - if: $RUNNER_TAG == "k8s"
-      variables:
-        DOCKER_HOST: tcp://docker:2376
-        DOCKER_TLS_CERTDIR: "/certs"
-        DOCKER_TLS_VERIFY: 1
-        DOCKER_CERT_PATH: "$DOCKER_TLS_CERTDIR/client"
-    # Run the pipeline in other cases.
-    - when: always
-
 include:
-  - local: '/.gitlab-ci.d/default.yml'
   - local: '/.gitlab-ci.d/base.yml'
   - local: '/.gitlab-ci.d/stages.yml'
   - local: '/.gitlab-ci.d/opensbi.yml'