From 8dd1828500b35917af57ec2137709be2ac83ef78 Mon Sep 17 00:00:00 2001 From: Rob Fletcher Date: Thu, 21 Sep 2023 12:17:54 -0700 Subject: [PATCH] Windows build does not work and I don't have resources to fix it --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9539161b..425cf0a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,14 +6,10 @@ jobs: build: strategy: matrix: - os: [ ubuntu-latest, windows-latest ] java: [17, 20] - exclude: - - os: windows-latest - java: 20 - name: Build on Java ${{ matrix.java }} - ${{ matrix.os }} - runs-on: ${{ matrix.os }} + name: Build on Java ${{ matrix.java }} + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3