Skip to content

Commit 1be9787

Browse files
committed
Group Native Image on Cloud Platforms demos under /clouds/
1 parent 3b93e72 commit 1be9787

File tree

102 files changed

+73
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+73
-73
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: native-aws-fargate
1+
name: clouds/native-aws-fargate
22
on:
33
push:
44
paths:
5-
- 'native-aws-fargate/**'
6-
- '.github/workflows/native-aws-fargate.yml'
5+
- 'clouds/native-aws-fargate/**'
6+
- '.github/workflows/clouds-native-aws-fargate.yml'
77
pull_request:
88
paths:
9-
- 'native-aws-fargate/**'
10-
- '.github/workflows/native-aws-fargate.yml'
9+
- 'clouds/native-aws-fargate/**'
10+
- '.github/workflows/clouds-native-aws-fargate.yml'
1111
schedule:
1212
- cron: "0 0 1 * *" # run every month
1313
workflow_dispatch:
1414
permissions:
1515
contents: read
1616
jobs:
1717
run:
18-
name: Run 'native-aws-fargate'
18+
name: Run 'clouds/native-aws-fargate'
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 20
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '17.0.7'
25+
java-version: '21'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
28-
- name: Run 'native-aws-fargate'
28+
- name: Run 'clouds/native-aws-fargate'
2929
run: |
30-
cd native-aws-fargate
30+
cd clouds/native-aws-fargate
3131
./mvnw package -Dpackaging=docker-native
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
name: native-aws-lambda
1+
name: clouds/native-aws-lambda
22
on:
33
push:
44
paths:
5-
- 'native-aws-lambda/**'
6-
- '.github/workflows/native-aws-lambda.yml'
5+
- 'clouds/native-aws-lambda/**'
6+
- '.github/workflows/clouds-native-aws-lambda.yml'
77
pull_request:
88
paths:
9-
- 'native-aws-lambda/**'
10-
- '.github/workflows/nativeaws-lambda.yml'
9+
- 'clouds/native-aws-lambda/**'
10+
- '.github/workflows/clouds-native-aws-lambda.yml'
1111
schedule:
1212
- cron: "0 0 1 * *" # run every month
1313
workflow_dispatch:
1414
permissions:
1515
contents: read
1616
jobs:
1717
run:
18-
name: Run 'native-aws-lambda'
18+
name: Run 'clouds/native-aws-lambda'
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 20
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '17.0.7'
25+
java-version: '21'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
28-
- name: Run 'native-aws-lambda java'
28+
- name: Run 'clouds/native-aws-lambda java'
2929
run: |
30-
cd native-aws-lambda
30+
cd clouds/native-aws-lambda
3131
./mvnw package
32-
- name: Run 'native-aws-lambda native image'
32+
- name: Run 'clouds/native-aws-lambda native image'
3333
run: |
34-
cd native-aws-lambda
34+
cd clouds/native-aws-lambda
3535
./mvnw package -Dpackaging=docker-native
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: native-google-cloud-run
1+
name: clouds/native-google-cloud-run
22
on:
33
push:
44
paths:
5-
- 'native-google-cloud-run/**'
6-
- '.github/workflows/native-google-cloud-run.yml'
5+
- 'clouds/native-google-cloud-run/**'
6+
- '.github/workflows/clouds-native-google-cloud-run.yml'
77
pull_request:
88
paths:
9-
- 'native-google-cloud-run/**'
10-
- '.github/workflows/native-google-cloud-run.yml'
9+
- 'clouds/native-google-cloud-run/**'
10+
- '.github/workflows/clouds-native-google-cloud-run.yml'
1111
schedule:
1212
- cron: "0 0 1 * *" # run every month
1313
workflow_dispatch:
1414
permissions:
1515
contents: read
1616
jobs:
1717
run:
18-
name: Run 'native-google-cloud-run'
18+
name: Run 'clouds/native-google-cloud-run'
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 20
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '17.0.7'
25+
java-version: '21'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
28-
- name: Run 'native-google-cloud-run'
28+
- name: Run 'clouds/native-google-cloud-run'
2929
run: |
30-
cd native-google-cloud-run
30+
cd clouds/native-google-cloud-run
3131
./mvnw package -Dpackaging=docker-native
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: clouds/native-oci-container-instances
2+
on:
3+
push:
4+
paths:
5+
- 'clouds/native-oci-container-instances/**'
6+
- '.github/workflows/clouds-native-oci-container-instances.yml'
7+
pull_request:
8+
paths:
9+
- 'clouds/native-oci-container-instances/**'
10+
- '.github/workflows/clouds-native-oci-container-instances.yml'
11+
schedule:
12+
- cron: "0 0 1 * *" # run every month
13+
workflow_dispatch:
14+
permissions:
15+
contents: read
16+
jobs:
17+
run:
18+
name: Run 'clouds/native-oci-container-instances'
19+
runs-on: ubuntu-latest
20+
timeout-minutes: 20
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: graalvm/setup-graalvm@v1
24+
with:
25+
java-version: '21'
26+
distribution: 'graalvm'
27+
github-token: ${{ secrets.GITHUB_TOKEN }}
28+
- name: Run 'clouds/native-oci-container-instances'
29+
run: |
30+
cd clouds/native-oci-container-instances
31+
./mvnw package -Dpackaging=docker-native
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: native-oci-generative-ai
1+
name: clouds/native-oci-generative-ai
22
on:
33
push:
44
paths:
5-
- 'native-oci-generative-ai/**'
6-
- '.github/workflows/native-oci-generative-ai.yml'
5+
- 'clouds/native-oci-generative-ai/**'
6+
- '.github/workflows/clouds-native-oci-generative-ai.yml'
77
pull_request:
88
paths:
9-
- 'native-oci-generative-ai/**'
10-
- '.github/workflows/native-oci-generative-ai.yml'
9+
- 'clouds/native-oci-generative-ai/**'
10+
- '.github/workflows/clouds-native-oci-generative-ai.yml'
1111
schedule:
1212
- cron: "0 0 1 * *" # run every month
1313
workflow_dispatch:
1414
permissions:
1515
contents: read
1616
jobs:
1717
run:
18-
name: Run 'native-oci-generative-ai'
18+
name: Run 'clouds/native-oci-generative-ai'
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 20
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '21.0.3'
25+
java-version: '21'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
- name: Run 'native-oci-generative-ai'
2929
run: |
30-
cd native-oci-generative-ai
30+
cd clouds/native-oci-generative-ai
3131
mvn --batch-mode clean package -Pnative

.github/workflows/native-oci-container-instances.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 5 deletions

0 commit comments

Comments
 (0)