On 16/07/21 09:46, Thomas Huth wrote:
Homebrew stopped working for the Catalina-based images. After updating
to Big Sur and adding an explicit "brew update", the pipelines go green
again.
Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx>
---
ci/cirrus-ci-macos-i386.yml | 3 ++-
ci/cirrus-ci-macos-x86-64.yml | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ci/cirrus-ci-macos-i386.yml b/ci/cirrus-ci-macos-i386.yml
index b837101..ef0861e 100644
--- a/ci/cirrus-ci-macos-i386.yml
+++ b/ci/cirrus-ci-macos-i386.yml
@@ -1,8 +1,9 @@
macos_i386_task:
osx_instance:
- image: catalina-base
+ image: big-sur-base
install_script:
+ - brew update
- brew install coreutils bash git gnu-getopt make qemu i686-elf-gcc
clone_script:
- git clone --depth 100 "@CI_REPOSITORY_URL@" .
diff --git a/ci/cirrus-ci-macos-x86-64.yml b/ci/cirrus-ci-macos-x86-64.yml
index f72c8e1..676646f 100644
--- a/ci/cirrus-ci-macos-x86-64.yml
+++ b/ci/cirrus-ci-macos-x86-64.yml
@@ -1,8 +1,9 @@
macos_task:
osx_instance:
- image: catalina-base
+ image: big-sur-base
install_script:
+ - brew update
- brew install coreutils bash git gnu-getopt make qemu x86_64-elf-gcc
clone_script:
- git clone --depth 100 "@CI_REPOSITORY_URL@" .
Queued, thanks.
Paolo