Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8263204: Add Gradle Wrapper Validation Action
Reviewed-by: kcr
  • Loading branch information
jgneff authored and kevinrushforth committed Mar 9, 2021
1 parent 9c7cf17 commit 75b4c15
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/submit.yml
Expand Up @@ -47,10 +47,18 @@ on:
- 'WIP*'

jobs:
validation:
name: "Gradle Wrapper Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1


linux_x64_build:
name: Linux x64
needs: validation
runs-on: "ubuntu-20.04"
if: 'true'

env:
# FIXME: read this information from a property file
Expand Down Expand Up @@ -131,8 +139,8 @@ jobs:
macos_x64_build:
name: macOS x64
needs: validation
runs-on: "macos-10.15"
if: 'true'

env:
# FIXME: read this information from a property file
Expand Down Expand Up @@ -212,8 +220,8 @@ jobs:
windows_x64_build:
name: Windows x64
needs: validation
runs-on: "windows-2019"
if: 'true'

env:
# FIXME: read this information from a property file
Expand Down

1 comment on commit 75b4c15

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.