[PATCH] .cirrus.yml: add bash to the brew packages

Alex Bennée posted 1 patch 3 years, 9 months ago
Test checkpatch passed
Test docker-mingw@fedora passed
Test FreeBSD passed
Test docker-quick@centos7 passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200710182238.10675-1-alex.bennee@linaro.org
.cirrus.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] .cirrus.yml: add bash to the brew packages
Posted by Alex Bennée 3 years, 9 months ago
Like the sed we include earlier we want something more recent for
iotests to work.

Fixes: 57ee95ed
Cc: Max Reitz <mreitz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .cirrus.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.cirrus.yml b/.cirrus.yml
index 69342ae031bc..f287d23c5b9b 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -20,7 +20,7 @@ macos_task:
   osx_instance:
     image: mojave-base
   install_script:
-    - brew install pkg-config python gnu-sed glib pixman make sdl2
+    - brew install pkg-config python gnu-sed glib pixman make sdl2 bash
   script:
     - mkdir build
     - cd build
@@ -33,7 +33,7 @@ macos_xcode_task:
     # this is an alias for the latest Xcode
     image: mojave-xcode
   install_script:
-    - brew install pkg-config gnu-sed glib pixman make sdl2
+    - brew install pkg-config gnu-sed glib pixman make sdl2 bash
   script:
     - mkdir build
     - cd build
-- 
2.20.1


Re: [PATCH] .cirrus.yml: add bash to the brew packages
Posted by Philippe Mathieu-Daudé 3 years, 9 months ago
On 7/10/20 8:22 PM, Alex Bennée wrote:
> Like the sed we include earlier we want something more recent for
> iotests to work.
> 
> Fixes: 57ee95ed
> Cc: Max Reitz <mreitz@redhat.com>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  .cirrus.yml | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/.cirrus.yml b/.cirrus.yml
> index 69342ae031bc..f287d23c5b9b 100644
> --- a/.cirrus.yml
> +++ b/.cirrus.yml
> @@ -20,7 +20,7 @@ macos_task:
>    osx_instance:
>      image: mojave-base
>    install_script:
> -    - brew install pkg-config python gnu-sed glib pixman make sdl2
> +    - brew install pkg-config python gnu-sed glib pixman make sdl2 bash
>    script:
>      - mkdir build
>      - cd build
> @@ -33,7 +33,7 @@ macos_xcode_task:
>      # this is an alias for the latest Xcode
>      image: mojave-xcode
>    install_script:
> -    - brew install pkg-config gnu-sed glib pixman make sdl2
> +    - brew install pkg-config gnu-sed glib pixman make sdl2 bash
>    script:
>      - mkdir build
>      - cd build
> 

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