Skip to content

Commit

Permalink
Add the build of the memory validator to the github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robcos committed Feb 21, 2024
1 parent bbc2def commit 663e454
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

jobs:
build:
build_memory_footprint:

runs-on: ubuntu-latest

Expand All @@ -39,3 +39,22 @@ jobs:
with:
gradle-version: 8.4
arguments: -p play-validations memory-footprint:jar -Dmemory-footprint.git_hash=${{ env.git_hash }}

build_validator:

runs-on: ubuntu-latest

steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
architecture: 'x64'
- name: Build validator
uses: gradle/[email protected]
with:
gradle-version: 8.4
arguments: -p third_party/wff :specification:validator:build

0 comments on commit 663e454

Please sign in to comment.