Skip to content

Commit

Permalink
Make ci job not run on macos-latest (2nd attempt)
Browse files Browse the repository at this point in the history
The `macos-latest`(14.4.1) does not have java8.
https://github.com/actions/runner-images/blob/main/images/macos/macos-144-arm64-Readme.md

Comment out `macos-latest` matrix.
  • Loading branch information
ttddyy committed Apr 27, 2024
1 parent 36d2660 commit 9367e4c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@ on:
jobs:
build:
if: github.repository == 'r2dbc/r2dbc-proxy'
runs-on: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
mvn: ./mvnw
- os: windows-latest
mvn: mvn
- os: macos-latest
mvn: ./mvnw
# Since macOS 14.4.1, macos-latest does not have java 8.
# https://github.com/actions/runner-images/blob/main/images/macos/macos-144-arm64-Readme.md
# - os: macos-latest
# mvn: ./mvnw
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
Expand Down

0 comments on commit 9367e4c

Please sign in to comment.