Skip to content

Commit c47a2b2

Browse files
committed
add ubuntu
1 parent 362828b commit c47a2b2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/verify_rc.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ on:
2424

2525
jobs:
2626
build:
27-
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
os: [ubuntu-latest, macos-latest]
30+
fail-fast: false
31+
runs-on: ${{ matrix.os }}
2832
steps:
2933
- name: Checkout repository
3034
uses: actions/checkout@v4
@@ -47,4 +51,4 @@ jobs:
4751
- name: Build Iceberg with Gradle (Docker Enabled)
4852
run: |
4953
cd apache-iceberg-1.8.0
50-
./gradlew build --info
54+
./gradlew build

0 commit comments

Comments
 (0)