diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2023-05-31 00:09:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 14:09:03 -0700 |
commit | af144563835849350015113e936e44bf2d44906a (patch) | |
tree | b3a1813e4822a54c923acb1c6349d270727159ec /.github/workflows | |
parent | 6de326e8721738df0a002bfd5e0ca117a1135930 (diff) |
CI: Update homebrew Redis version. (#1191)
Fixes cross-compilation QEMU CI tests
* CI: Update homebrew Redis version.
* CI: Try apt-get update as a workaround.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/test.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a1ef51..581800b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,8 +133,8 @@ jobs: - name: Install dependencies run: | - brew install openssl redis@6.2 - brew link redis@6.2 --force + brew install openssl redis@7.0 + brew link redis@7.0 --force - name: Build hiredis run: USE_SSL=1 make diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7812af6..1a2c60b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,7 +60,7 @@ jobs: steps: - name: Install qemu if: matrix.emulator - run: sudo apt-get install -y qemu-user + run: sudo apt-get update && sudo apt-get install -y qemu-user - name: Install platform toolset if: matrix.toolset run: sudo apt-get install -y gcc-${{matrix.toolset}} |