From 3a3fcb3745ce8041a63fc48bff7773b008a7215f Mon Sep 17 00:00:00 2001 From: Fedor Dikarev Date: Wed, 20 Nov 2024 15:16:26 +0100 Subject: [PATCH] now all together and check for build on macos-15 --- .github/workflows/build-macos.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index ddbdd20626..7a46d68c8c 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -45,7 +45,7 @@ jobs: contains(github.event.pull_request.labels.*.name, 'run-extra-build-*') || github.ref_name == 'main' timeout-minutes: 30 - runs-on: ubuntu-22.04 + runs-on: macos-15 strategy: matrix: postgres-version: ${{ fromJSON(needs.files-changed.outputs.postgres_changes) }} @@ -64,17 +64,17 @@ jobs: - name: Install build dependencies run: | - echo brew install flex bison openssl protobuf icu4c + brew install flex bison openssl protobuf icu4c - name: Build Postgres ${{ matrix.postgres-version }} run: | - echo make postgres-${{ matrix.postgres-version }} + make postgres-${{ matrix.postgres-version }} - name: Build Neon Pg Ext ${{ matrix.postgres-version }} run: | - echo make "neon-pg-ext-${{ matrix.postgres-version }}" + make "neon-pg-ext-${{ matrix.postgres-version }}" - name: Build walproposer-lib (only for v17) if: matrix.postgres-version == 'v17' run: - echo make walproposer-lib + make walproposer-lib