Skip to content

Commit 905ac80

Browse files
committed
Add e2e-graal step to e2e test workflow.
1 parent 4e83aca commit 905ac80

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/check-e2e.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,35 @@ jobs:
7171
env:
7272
JAVA_VERSION: ${{ matrix.java }}
7373
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml
74+
75+
e2e-graal:
76+
name: End-to-end GraalVM Tests (Java ${{ matrix.java }})
77+
runs-on: ubuntu-latest
78+
permissions:
79+
id-token: write
80+
environment: E2E
81+
strategy:
82+
max-parallel: 3
83+
matrix:
84+
java:
85+
- 11
86+
- 17
87+
- 21
88+
89+
steps:
90+
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
91+
- name: Setup java
92+
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
93+
with:
94+
distribution: 'corretto'
95+
java-version: ${{ matrix.java }}
96+
cache: maven
97+
- name: Setup AWS credentials
98+
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
99+
with:
100+
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
101+
aws-region: us-east-1
102+
- name: Run e2e-graal test with Maven
103+
env:
104+
JAVA_VERSION: ${{ matrix.java }}
105+
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e-graal -B verify --file powertools-e2e-tests/pom.xml

0 commit comments

Comments
 (0)