-
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.
Merge pull request #317 from graalvm/move-cloud-demos
[GR-60094] Move Native Image on Cloud Platforms demos into a subdirectory /clouds/.
- Loading branch information
Showing
102 changed files
with
73 additions
and
73 deletions.
There are no files selected for viewing
18 changes: 9 additions & 9 deletions
18
.github/workflows/native-aws-fargate.yml → ...b/workflows/clouds-native-aws-fargate.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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
name: native-aws-fargate | ||
name: clouds/native-aws-fargate | ||
on: | ||
push: | ||
paths: | ||
- 'native-aws-fargate/**' | ||
- '.github/workflows/native-aws-fargate.yml' | ||
- 'clouds/native-aws-fargate/**' | ||
- '.github/workflows/clouds-native-aws-fargate.yml' | ||
pull_request: | ||
paths: | ||
- 'native-aws-fargate/**' | ||
- '.github/workflows/native-aws-fargate.yml' | ||
- 'clouds/native-aws-fargate/**' | ||
- '.github/workflows/clouds-native-aws-fargate.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'native-aws-fargate' | ||
name: Run 'clouds/native-aws-fargate' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '17.0.7' | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run 'native-aws-fargate' | ||
- name: Run 'clouds/native-aws-fargate' | ||
run: | | ||
cd native-aws-fargate | ||
cd clouds/native-aws-fargate | ||
./mvnw package -Dpackaging=docker-native |
22 changes: 11 additions & 11 deletions
22
.github/workflows/native-aws-lambda.yml → ...ub/workflows/clouds-native-aws-lambda.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 |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: native-aws-lambda | ||
name: clouds/native-aws-lambda | ||
on: | ||
push: | ||
paths: | ||
- 'native-aws-lambda/**' | ||
- '.github/workflows/native-aws-lambda.yml' | ||
- 'clouds/native-aws-lambda/**' | ||
- '.github/workflows/clouds-native-aws-lambda.yml' | ||
pull_request: | ||
paths: | ||
- 'native-aws-lambda/**' | ||
- '.github/workflows/nativeaws-lambda.yml' | ||
- 'clouds/native-aws-lambda/**' | ||
- '.github/workflows/clouds-native-aws-lambda.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'native-aws-lambda' | ||
name: Run 'clouds/native-aws-lambda' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '17.0.7' | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run 'native-aws-lambda java' | ||
- name: Run 'clouds/native-aws-lambda java' | ||
run: | | ||
cd native-aws-lambda | ||
cd clouds/native-aws-lambda | ||
./mvnw package | ||
- name: Run 'native-aws-lambda native image' | ||
- name: Run 'clouds/native-aws-lambda native image' | ||
run: | | ||
cd native-aws-lambda | ||
cd clouds/native-aws-lambda | ||
./mvnw package -Dpackaging=docker-native |
18 changes: 9 additions & 9 deletions
18
...hub/workflows/native-google-cloud-run.yml → ...kflows/clouds-native-google-cloud-run.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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
name: native-google-cloud-run | ||
name: clouds/native-google-cloud-run | ||
on: | ||
push: | ||
paths: | ||
- 'native-google-cloud-run/**' | ||
- '.github/workflows/native-google-cloud-run.yml' | ||
- 'clouds/native-google-cloud-run/**' | ||
- '.github/workflows/clouds-native-google-cloud-run.yml' | ||
pull_request: | ||
paths: | ||
- 'native-google-cloud-run/**' | ||
- '.github/workflows/native-google-cloud-run.yml' | ||
- 'clouds/native-google-cloud-run/**' | ||
- '.github/workflows/clouds-native-google-cloud-run.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'native-google-cloud-run' | ||
name: Run 'clouds/native-google-cloud-run' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '17.0.7' | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run 'native-google-cloud-run' | ||
- name: Run 'clouds/native-google-cloud-run' | ||
run: | | ||
cd native-google-cloud-run | ||
cd clouds/native-google-cloud-run | ||
./mvnw package -Dpackaging=docker-native |
31 changes: 31 additions & 0 deletions
31
.github/workflows/clouds-native-oci-container-instances.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,31 @@ | ||
name: clouds/native-oci-container-instances | ||
on: | ||
push: | ||
paths: | ||
- 'clouds/native-oci-container-instances/**' | ||
- '.github/workflows/clouds-native-oci-container-instances.yml' | ||
pull_request: | ||
paths: | ||
- 'clouds/native-oci-container-instances/**' | ||
- '.github/workflows/clouds-native-oci-container-instances.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'clouds/native-oci-container-instances' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run 'clouds/native-oci-container-instances' | ||
run: | | ||
cd clouds/native-oci-container-instances | ||
./mvnw package -Dpackaging=docker-native |
16 changes: 8 additions & 8 deletions
16
...ub/workflows/native-oci-generative-ai.yml → ...flows/clouds-native-oci-generative-ai.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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
name: native-oci-generative-ai | ||
name: clouds/native-oci-generative-ai | ||
on: | ||
push: | ||
paths: | ||
- 'native-oci-generative-ai/**' | ||
- '.github/workflows/native-oci-generative-ai.yml' | ||
- 'clouds/native-oci-generative-ai/**' | ||
- '.github/workflows/clouds-native-oci-generative-ai.yml' | ||
pull_request: | ||
paths: | ||
- 'native-oci-generative-ai/**' | ||
- '.github/workflows/native-oci-generative-ai.yml' | ||
- 'clouds/native-oci-generative-ai/**' | ||
- '.github/workflows/clouds-native-oci-generative-ai.yml' | ||
schedule: | ||
- cron: "0 0 1 * *" # run every month | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
run: | ||
name: Run 'native-oci-generative-ai' | ||
name: Run 'clouds/native-oci-generative-ai' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21.0.3' | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run 'native-oci-generative-ai' | ||
run: | | ||
cd native-oci-generative-ai | ||
cd clouds/native-oci-generative-ai | ||
mvn --batch-mode clean package -Pnative |
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
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.