Skip to content

Commit

Permalink
feat(action): SSH action proxy jump (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
boddissattva authored Nov 20, 2024
1 parent 42bc2bc commit 2effe53
Show file tree
Hide file tree
Showing 43 changed files with 1,087 additions and 814 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-all-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
shell: bash
run: |
mvn org.apache.maven.plugins:maven-install-plugin:3.1.1:install-file \
-Dfile=./chutney/packaging/local-api-unsecure/target/chutney-local-api-unsecure-${{steps.get-version.outputs.PROJECT_VERSION}}.jar \
-Dfile=./chutney/packaging/local-api-unsecure/target/local-api-unsecure-${{steps.get-version.outputs.PROJECT_VERSION}}.jar \
-DgroupId=com.chutneytesting \
-DartifactId=local-api-unsecure \
-Dversion=${{steps.get-version.outputs.PROJECT_VERSION}} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-to-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
skipTests: true
cache-artifacts: |
chutney/packaging/local-dev/target/chutney-local-dev-*.jar
chutney/packaging/local-dev/target/local-dev-*.jar
idea-plugin/build/distributions/*.zip
chutney/ui/dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-to-ossrh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
skipTests: true
cache-artifacts: |
chutney/packaging/local-dev/target/chutney-local-dev-*.jar
chutney/packaging/local-dev/target/local-dev-*.jar
idea-plugin/build/distributions/*.zip
chutney/ui/dist
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
######################
# Maven
######################
.mvn/*
**/.mvn/*
!.mvn/
.mvn/wrapper/*
!.mvn/wrapper/
Expand Down
26 changes: 22 additions & 4 deletions acceptance-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
~
-->
<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/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -31,7 +31,6 @@
<kotlin.compiler.apiVersion>1.9</kotlin.compiler.apiVersion>
<kotlin.compiler.jvmTarget>${maven.compiler.target}</kotlin.compiler.jvmTarget>
<kotlin.version>1.9.25</kotlin.version>

</properties>

<dependencyManagement>
Expand Down Expand Up @@ -67,6 +66,13 @@
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-kotlin-dsl</artifactId>
</dependency>

<dependency> <!-- Here to be sure that oci image is built before testing -->
<groupId>com.chutneytesting</groupId>
<artifactId>local-dev</artifactId>
<version>${chutney.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
Expand Down Expand Up @@ -116,16 +122,28 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<includes>
<include>AcceptanceTests.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<!-- Has to be after the default-test surefire execution declaration -->
<!-- Has to be after the failsafe execution declaration -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>chutney-test-report</id>
<phase>test</phase>
<phase>integration-test</phase>
<goals>
<goal>java</goal>
</goals>
Expand Down
Loading

0 comments on commit 2effe53

Please sign in to comment.