From 14ec0907fdc90aaa0244a0e98b1045533d328e74 Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett Date: Tue, 6 Aug 2024 20:58:05 -0400 Subject: [PATCH] Update Github Actions CI - add macos-13 (#127) --- .github/workflows/build-ubuntu.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index b7fec88..a285ddf 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -4,7 +4,7 @@ on: push: branches: [ "master", "develop", "release-*" ] pull_request: - branches: [ "master", "develop" ] + branches: [ "master", "develop", release-* ] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) @@ -20,7 +20,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04, macos-latest, macos-12] + os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04, macos-latest, macos-13, macos-12] rmq: [WITH_RMQ=ON, WITH_RMQ=OFF] steps: - name: set apt conf (Debian based Linux) @@ -37,10 +37,10 @@ jobs: run: sudo apt -y install librabbitmq-dev - name: Install dependencies (MacOS) - if: matrix.os == 'macos-latest' || matrix.os == 'macos-12' || matrix.os == 'macos-11' + if: matrix.os == 'macos-latest' || matrix.os == 'macos-12' || matrix.os == 'macos-13' run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi openssl zmq libpgm miniupnpc expat libunwind-headers protobuf - name: Install RabbitMQ iff WITH_RMQ (MacOS) - if: matrix.rmq == 'WITH_RMQ=ON' && (matrix.os == 'macos-latest' || matrix.os == 'macos-12' || matrix.os == 'macos-11') + if: matrix.rmq == 'WITH_RMQ=ON' && (matrix.os == 'macos-latest' || matrix.os == 'macos-12' || matrix.os == 'macos-13') run: HOMEBREW_NO_AUTO_UPDATE=1 brew install rabbitmq-c - name: Checkout Monero Source