diff mbox series

.shippable: remove the last bits

Message ID 20210210154106.20825-1-alex.bennee@linaro.org
State New
Headers show
Series .shippable: remove the last bits | expand

Commit Message

Alex Bennée Feb. 10, 2021, 3:41 p.m. UTC
Shippable is about to sunset in May 2021 [1] and we had already moved
a chunk of the crossbuilds to GitLab. We already cross build
mips-softmmu targets since:

  6bcb5fc0f7 ("gitlab-ci: Add cross-compiling build tests")

and x86 is very well covered.

[1]: https://blog.shippable.com/the-next-step-in-the-evolution-of-shippable-jfrog-pipelines

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .shippable.yml | 23 -----------------------
 1 file changed, 23 deletions(-)
 delete mode 100644 .shippable.yml

Comments

Daniel P. Berrangé Feb. 10, 2021, 3:49 p.m. UTC | #1
On Wed, Feb 10, 2021 at 03:41:06PM +0000, Alex Bennée wrote:
> Shippable is about to sunset in May 2021 [1] and we had already moved
> a chunk of the crossbuilds to GitLab. We already cross build
> mips-softmmu targets since:
> 
>   6bcb5fc0f7 ("gitlab-ci: Add cross-compiling build tests")
> 
> and x86 is very well covered.
> 
> [1]: https://blog.shippable.com/the-next-step-in-the-evolution-of-shippable-jfrog-pipelines
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  .shippable.yml | 23 -----------------------
>  1 file changed, 23 deletions(-)
>  delete mode 100644 .shippable.yml

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
Philippe Mathieu-Daudé Feb. 10, 2021, 3:54 p.m. UTC | #2
On 2/10/21 4:41 PM, Alex Bennée wrote:
> Shippable is about to sunset in May 2021 [1] and we had already moved
> a chunk of the crossbuilds to GitLab. We already cross build
> mips-softmmu targets since:
> 
>   6bcb5fc0f7 ("gitlab-ci: Add cross-compiling build tests")
> 
> and x86 is very well covered.
> 
> [1]: https://blog.shippable.com/the-next-step-in-the-evolution-of-shippable-jfrog-pipelines
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  .shippable.yml | 23 -----------------------
>  1 file changed, 23 deletions(-)
>  delete mode 100644 .shippable.yml

Thanks for cleaning this.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
diff mbox series

Patch

diff --git a/.shippable.yml b/.shippable.yml
deleted file mode 100644
index 97bfa2a0f3..0000000000
--- a/.shippable.yml
+++ /dev/null
@@ -1,23 +0,0 @@ 
-language: c
-git:
-   submodules: false
-env:
-  global:
-    - LC_ALL=C
-  matrix:
-    - IMAGE=debian-amd64
-      TARGET_LIST=x86_64-softmmu,x86_64-linux-user
-    - IMAGE=debian-mips-cross
-      TARGET_LIST=mips-softmmu
-build:
-  pre_ci_boot:
-    image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE}
-    image_tag: latest
-    pull: true
-    options: "-e HOME=/root"
-  ci:
-    - unset CC
-    - mkdir build
-    - cd build
-    - ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
-    - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))