Skip to content

Commit

Permalink
Update common files (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
micronaut-build authored Feb 19, 2024
1 parent ec5360f commit be25e63
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/graalvm-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
matrix: ${{ fromJson(needs.build_matrix.outputs.matrix) }}
matrix:
java: ['dev']
distribution: ['graalvm-community']
native_test_task: ${{ fromJson(needs.build_matrix.outputs.matrix).native_test_task }}
include:
- java: '22-ea'
distribution: 'graalvm'
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }}
Expand All @@ -39,7 +45,8 @@ jobs:
uses: micronaut-projects/github-actions/graalvm/pre-build@master
id: pre-build
with:
java: 'dev'
java: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Build Steps
uses: micronaut-projects/github-actions/graalvm/build@master
id: build
Expand All @@ -53,4 +60,4 @@ jobs:
uses: micronaut-projects/github-actions/graalvm/post-build@master
id: post-build
with:
java: 'dev'
java: ${{ matrix.java }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
Expand Down

0 comments on commit be25e63

Please sign in to comment.