From ee02583cd27703833db6007a0804ba5b2e26314f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 18 Oct 2023 11:19:59 +0200 Subject: [PATCH] ci: onlyh install protoc on macos-latest --- .github/workflows/nightly-nym-wallet-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly-nym-wallet-build.yml b/.github/workflows/nightly-nym-wallet-build.yml index c4943e0c6c..f4d32bd396 100644 --- a/.github/workflows/nightly-nym-wallet-build.yml +++ b/.github/workflows/nightly-nym-wallet-build.yml @@ -25,7 +25,7 @@ jobs: - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get install -y libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libudev-dev squashfs-tools protobuf-compiler - if: matrix.os == 'custom-linux' + if: matrix.os == 'custom-ubuntu-20.04' - name: Install rust toolchain uses: actions-rs/toolchain@v1 @@ -37,6 +37,7 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v2 + if: matrix.os == 'macos-latest' - name: Check formatting uses: actions-rs/cargo@v1