Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 0 additions & 66 deletions .github/workflows/auto-merge.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/check-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
- 11
- 17
- 21

steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup java
Expand All @@ -68,4 +69,6 @@ jobs:
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
aws-region: us-east-1
- name: Run e2e test with Maven
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml
env:
JAVA_VERSION: ${{ matrix.java }}
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml
40 changes: 0 additions & 40 deletions .github/workflows/docs-v2-snapshot.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/publish-v2-snapshot.yml

This file was deleted.

10 changes: 7 additions & 3 deletions powertools-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>powertools-parent</artifactId>
Expand Down Expand Up @@ -216,10 +216,14 @@
</execution>
</executions>
<configuration>
<skipAfterFailureCount>1</skipAfterFailureCount> <!-- no need to continue / deploy more resources and lose time -->
<skipAfterFailureCount>1</skipAfterFailureCount> <!-- no need to continue / deploy more
resources and lose time -->
<includes>
<include>**/*E2ET.java</include>
</includes>
<excludes>
<exclude>**/TracingE2ET.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
Expand Down
Loading