From 5ac115f187fcbfc885f9d52950536ddc00415ce2 Mon Sep 17 00:00:00 2001 From: Chris Povirk Date: Thu, 8 Jun 2023 10:42:28 -0400 Subject: [PATCH] Try to test Windows CI. DO NOT SUBMIT Fixes https://github.com/google/guava/issues/2686 if we submit it, which we won't. --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f754437caf7..5db77f3abed0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,14 @@ jobs: name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }}" strategy: matrix: + os: [ ubuntu-latest ] java: [ 8, 11, 17 ] root-pom: [ 'pom.xml', 'android/pom.xml' ] - runs-on: ubuntu-latest + include: + - os: windows-latest + - java: 17 + - root-pom: pom.xml + runs-on: ${{ matrix.os }} env: ROOT_POM: ${{ matrix.root-pom }} steps: