generated from micronaut-projects/micronaut-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from micronaut-projects/sync-files-master
[fuzzing] Update common files for branch master
- Loading branch information
Showing
18 changed files
with
399 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
changelog: | ||
exclude: | ||
authors: | ||
- micronaut-build | ||
categories: | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- 'type: breaking' | ||
- title: New Features 🎉 | ||
labels: | ||
- 'type: enhancement' | ||
- title: Bug Fixes 🐞 | ||
labels: | ||
- 'type: bug' | ||
- title: Improvements ⭐ | ||
labels: | ||
- 'type: improvement' | ||
- title: Docs 📖 | ||
labels: | ||
- 'type: docs' | ||
- title: Dependency updates 🚀 | ||
labels: | ||
- 'type: dependency-upgrade' | ||
- 'dependency-upgrade' | ||
- title: Regressions 🧐 | ||
labels: | ||
- 'type: regression' | ||
- title: GraalVM 🏆 | ||
labels: | ||
- 'relates-to: graal' | ||
- title: Other Changes 💡 | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"addLabels": [ | ||
"type: dependency-upgrade" | ||
], | ||
"schedule": [ | ||
"after 10pm" | ||
], | ||
"prHourlyLimit": 1, | ||
"prConcurrentLimit": 20, | ||
"timezone": "Europe/Prague", | ||
"packageRules": [ | ||
{ | ||
"dependencyDashboardApproval": true, | ||
"matchUpdateTypes": [ | ||
"patch" | ||
], | ||
"matchCurrentVersion": "!/^0/", | ||
"automerge": true, | ||
"matchPackageNames": [ | ||
"/actions.*/" | ||
] | ||
}, | ||
{ | ||
"matchUpdateTypes": [ | ||
"patch" | ||
], | ||
"matchCurrentVersion": "!/^0/", | ||
"automerge": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# WARNING: Do not edit this file directly. Instead, go to: | ||
# | ||
# https://github.com/micronaut-projects/micronaut-project-template/tree/master/.github/workflows | ||
# | ||
# and edit them there. Note that it will be sync'ed to all the Micronaut repos | ||
name: GraalVM Dev CI | ||
on: | ||
schedule: | ||
- cron: "0 1 * * 1-5" # Mon-Fri at 1am UTC | ||
jobs: | ||
build_matrix: | ||
if: github.repository != 'micronaut-projects/micronaut-project-template' | ||
runs-on: ubuntu-latest | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | ||
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | ||
outputs: | ||
matrix: ${{ steps.build-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build Matrix | ||
uses: micronaut-projects/github-actions/graalvm/build-matrix@master | ||
id: build-matrix | ||
build: | ||
needs: build_matrix | ||
if: github.repository != 'micronaut-projects/micronaut-project-template' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 6 | ||
matrix: | ||
java: ['dev', 'latest-ea'] | ||
distribution: ['graalvm-community', 'graalvm'] | ||
native_test_task: ${{ fromJson(needs.build_matrix.outputs.matrix).native_test_task }} | ||
exclude: | ||
- java: 'dev' | ||
distribution: 'graalvm' | ||
- java: 'latest-ea' | ||
distribution: 'graalvm-community' | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | ||
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Pre-Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/pre-build@master | ||
id: pre-build | ||
with: | ||
java: ${{ matrix.java }} | ||
distribution: ${{ matrix.distribution }} | ||
- name: Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/build@master | ||
id: build | ||
env: | ||
GH_TOKEN_PUBLIC_REPOS_READONLY: ${{ secrets.GH_TOKEN_PUBLIC_REPOS_READONLY }} | ||
GH_USERNAME: ${{ secrets.GH_USERNAME }} | ||
GRAALVM_QUICK_BUILD: true | ||
with: | ||
nativeTestTask: ${{ matrix.native_test_task }} | ||
- name: Post-Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/post-build@master | ||
id: post-build | ||
with: | ||
java: ${{ matrix.java }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# WARNING: Do not edit this file directly. Instead, go to: | ||
# | ||
# https://github.com/micronaut-projects/micronaut-project-template/tree/master/.github/workflows | ||
# | ||
# and edit them there. Note that it will be sync'ed to all the Micronaut repos | ||
name: GraalVM Latest CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- '[1-9]+.[0-9]+.x' | ||
pull_request: | ||
branches: | ||
- master | ||
- '[1-9]+.[0-9]+.x' | ||
jobs: | ||
build_matrix: | ||
if: github.repository != 'micronaut-projects/micronaut-project-template' | ||
runs-on: ubuntu-latest | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | ||
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | ||
outputs: | ||
matrix: ${{ steps.build-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build Matrix | ||
uses: micronaut-projects/github-actions/graalvm/build-matrix@master | ||
id: build-matrix | ||
build: | ||
needs: build_matrix | ||
if: github.repository != 'micronaut-projects/micronaut-project-template' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 6 | ||
matrix: | ||
java: ['17', '21'] | ||
native_test_task: ${{ fromJson(needs.build_matrix.outputs.matrix).native_test_task }} | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | ||
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Pre-Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/pre-build@master | ||
id: pre-build | ||
with: | ||
distribution: 'graalvm' | ||
java: ${{ matrix.java }} | ||
- name: Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/build@master | ||
id: build | ||
env: | ||
GH_TOKEN_PUBLIC_REPOS_READONLY: ${{ secrets.GH_TOKEN_PUBLIC_REPOS_READONLY }} | ||
GH_USERNAME: ${{ secrets.GH_USERNAME }} | ||
GRAALVM_QUICK_BUILD: true | ||
with: | ||
nativeTestTask: ${{ matrix.native_test_task }} | ||
- name: Post-Build Steps | ||
uses: micronaut-projects/github-actions/graalvm/post-build@master | ||
id: post-build | ||
with: | ||
java: ${{ matrix.java }} |
Oops, something went wrong.