Skip to content

Commit d562fd6

Browse files
committed
disable running nightly build on forks
1 parent ddc2ac4 commit d562fd6

4 files changed

Lines changed: 1526 additions & 1544 deletions

File tree

.github/workflows/maven.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
distribution: 'temurin'
2626
java-version: ${{ matrix.java }}
2727
cache: 'maven'
28-
- name: Add custom hostname for localhost
29-
run: echo "127.0.0.1 localhost-quickfixj" | sudo tee -a /etc/hosts
3028
- name: Test with Maven
3129
run: ./mvnw install -B -V -D"maven.javadoc.skip"="true" -P"skipBundlePlugin,minimal-fix-latest" -D"java.util.logging.config.file"="${{github.workspace}}/quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120"
3230

.github/workflows/nightly-build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
distribution: temurin
2020
java-version: 21
2121
cache: maven
22-
- name: Add custom hostname for localhost
23-
run: echo "127.0.0.1 localhost-quickfixj" | sudo tee -a /etc/hosts
2422

2523
- name: Build SNAPSHOT
2624
run: ./mvnw clean package -B -V -D"maven.javadoc.skip"="true" -D"java.util.logging.config.file"="${{github.workspace}}/quickfixj-core/src/test/resources/logging.properties" -D"http.keepAlive"="false" -D"maven.wagon.http.pool"="false" -D"maven.wagon.httpconnectionManager.ttlSeconds"="120"

quickfixj-core/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,13 @@
123123
<version>4.2.6.Final</version>
124124
<scope>test</scope>
125125
</dependency>
126-
<dependency>
126+
<dependency>
127+
<groupId>org.burningwave</groupId>
128+
<artifactId>tools</artifactId>
129+
<version>0.27.2</version>
130+
<scope>test</scope>
131+
</dependency>
132+
<dependency>
127133
<groupId>org.apache.mina</groupId>
128134
<artifactId>mina-core</artifactId>
129135
</dependency>

0 commit comments

Comments
 (0)