From 5ee88649d6272faa4e99ee59457b3c758e9b3d63 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Fri, 30 Jun 2023 14:40:19 -0400 Subject: [PATCH] Add Windows and MacOS builds to GA workflow --- .github/workflows/pull-request-build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml index aeff0daacd0..2a56a776129 100644 --- a/.github/workflows/pull-request-build.yml +++ b/.github/workflows/pull-request-build.yml @@ -9,7 +9,10 @@ permissions: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest, macos-latest, ubuntu-latest] permissions: contents: read pull-requests: read @@ -23,6 +26,6 @@ jobs: distribution: 'temurin' cache: maven - name: Build with Apache Maven - run: mvn -U clean install -Djava.awt.headless=true -fae -B -Peverything + run: mvn -U clean install -fae -B -Peverything env: MAVEN_OPTS: "-Xmx1024M"