Skip to content

Commit

Permalink
edit builder.yml, setup jdk11
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwan committed Nov 23, 2022
1 parent d2bbb0d commit 81bb22c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:
PKG_NAME: opencv-4.6.0-ubuntu1804

steps:
# Setup JDK 11
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'

# 检出代码
- uses: actions/checkout@v3

Expand Down Expand Up @@ -60,6 +67,13 @@ jobs:
PKG_NAME: opencv-4.6.0-macos1015

steps:
# Setup JDK 11
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'

# 检出代码
- uses: actions/checkout@v3

Expand Down Expand Up @@ -110,6 +124,13 @@ jobs:
PKG_NAME: opencv-4.6.0-windows-vs2019

steps:
# Setup JDK 11
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'

# 检出代码
- uses: actions/checkout@v3

Expand Down

0 comments on commit 81bb22c

Please sign in to comment.