-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Micronaut demos under native-image/microservices; Add Gradle dem…
…o sources; Sycnhronize READMEs
- Loading branch information
Showing
31 changed files
with
165 additions
and
1,393 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
.github/workflows/microservices-micronaut-hello-rest-gradle.yml
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,29 @@ | ||
name: microservices/micronaut-hello-rest-gradle | ||
on: | ||
push: | ||
paths: | ||
- 'native-image/microservices/micronaut-hello-rest-gradle/**' | ||
- '.github/workflows/microservices-micronaut-hello-rest-gradle.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'microservices/micronaut-hello-rest-gradle' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
cache: 'gradle' | ||
native-image-job-reports: 'true' | ||
- name: Run 'microservices/micronaut-hello-rest-gradle' | ||
run: | | ||
cd native-image/microservices/micronaut-hello-rest-gradle | ||
./run.sh |
32 changes: 32 additions & 0 deletions
32
.github/workflows/microservices-micronaut-hello-rest-maven.yml
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,32 @@ | ||
name: microservices/micronaut-hello-rest-maven | ||
on: | ||
push: | ||
paths: | ||
- 'native-image/microservices/micronaut-hello-rest-maven/**' | ||
- '.github/workflows/microservices-micronaut-hello-rest-maven.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'microservices/micronaut-hello-rest-maven' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
strategy: | ||
matrix: | ||
java-version: ['21', '24-ea'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: ${{ matrix.java-version }} | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
cache: 'maven' | ||
native-image-job-reports: 'true' | ||
- name: Run 'microservices/micronaut-hello-rest-maven' | ||
run: | | ||
cd native-image/microservices/micronaut-hello-rest-maven | ||
./run.sh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
micronaut-hello-rest-maven/.mvn/wrapper/maven-wrapper.properties
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.