Skip to content

Commit

Permalink
Merge pull request #144 from ultramancoder/migrate-setup-java
Browse files Browse the repository at this point in the history
Migrate sanity.yml workflow to setup-java action
  • Loading branch information
sophia-guo authored Nov 8, 2022
2 parents fa4002f + b306c01 commit c6cda6b
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "nightly sanity test"
name: "weekly sanity test"
on:
schedule:
- cron: '30 20 * * 1-5'
- cron: '30 20 * * 1'

jobs:
sanity:
Expand All @@ -11,16 +11,14 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [8, 11, 17]
impl: [hotspot]
impl: [temurin]
buildlist: [openjdk, system, functional]
steps:
- uses: actions/checkout@v3
- uses: AdoptOpenJDK/install-jdk@v1
- uses: actions/setup-java@v3
with:
version: ${{ matrix.version }}
targets: JDK_${{ matrix.version }}
impl: ${{ matrix.impl }}
source: 'nightly'
java-version: ${{ matrix.version }}
distribution: ${{ matrix.impl }}
- name: AQA
uses: ./
with:
Expand Down

0 comments on commit c6cda6b

Please sign in to comment.