From 3bb61ce8fa6975d3e81012d159b0b584e8bd6e72 Mon Sep 17 00:00:00 2001 From: Fedor Dikarev Date: Wed, 20 Nov 2024 14:35:24 +0100 Subject: [PATCH] don't build and run on ubuntu for tests --- .github/workflows/build-macos.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 5496de60e4..1ef0f9b9a7 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: macos-14 + runs-on: ubuntu-22.04 strategy: matrix: postgres-version: ${{ fromJSON(needs.files-changed.outputs.postgres_changes) }} @@ -59,15 +59,19 @@ jobs: with: submodules: true + - name: Install build dependencies + run: | + echo brew install flex bison openssl protobuf icu4c + - name: Build Postgres ${{ matrix.postgres-version }} run: | - make postgres-${{ matrix.postgres-version }} + echo make postgres-${{ matrix.postgres-version }} - name: Build Neon Pg Ext ${{ matrix.postgres-version }} run: | - make "neon-pg-ext-${{ matrix.postgres-version }}" + echo make "neon-pg-ext-${{ matrix.postgres-version }}" - name: Build walproposer-lib (only for v17) if: matrix.postgres-version == 'v17' run: - make walproposer-lib + echo make walproposer-lib