diff options
author | michael-grunder <michael.grunder@gmail.com> | 2024-01-21 10:34:29 -0800 |
---|---|---|
committer | Michael Grunder <michael.grunder@gmail.com> | 2024-01-21 12:28:15 -0800 |
commit | 94d931d96ab2770a78dad92603667867bbf452f5 (patch) | |
tree | 13089a7b47780d8888caa30d4a062bdef23d848a /.github | |
parent | 869f3d0ef1513dd0258ad7190c9914df16dcc4a4 (diff) |
Fix macOS and FreeBSD CI runners.
* Update macOS to brew install redis@7.2
* Switch freeBSD runner to v1 and switch from running it on a macos
runner to ubuntu.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 581800b..e852e9a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -112,13 +112,13 @@ jobs: run: $GITHUB_WORKSPACE/test.sh freebsd: - runs-on: macos-12 + runs-on: ubuntu-latest name: FreeBSD steps: - uses: actions/checkout@v3 - name: Build in FreeBSD - uses: vmactions/freebsd-vm@v0 + uses: vmactions/freebsd-vm@v1.0.5 with: prepare: pkg install -y gmake cmake run: | @@ -133,8 +133,8 @@ jobs: - name: Install dependencies run: | - brew install openssl redis@7.0 - brew link redis@7.0 --force + brew install openssl redis@7.2 + brew link redis@7.2 --force - name: Build hiredis run: USE_SSL=1 make |