Skip to content

Commit ecbde0e

Browse files
authored
Merge pull request #432 from aerospike/FIX-snapshot-builds_jdk8
Fixing broken tests because of missing dependency jdk8
2 parents aef58c9 + e81a844 commit ecbde0e

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/pull-request-open.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
name: Build stage - Test with latest RC version of Aerospike Enterprise Server
3434
uses: ./.github/workflows/build-pr.yaml
3535
with:
36-
branch: ${{ github.base_ref || inputs.branch }}
36+
branch: ${{ github.ref }}
3737
source-branch: ${{ inputs.source-branch || github.base_ref }}
3838
use-server-rc: true
3939
upload-artifacts: false

client/deploy-resources/bouncycastle_pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
<artifactId>jbcrypt</artifactId>
5858
<version>0.4</version>
5959
</dependency>
60+
<dependency>
61+
<groupId>org.yaml</groupId>
62+
<artifactId>snakeyaml</artifactId>
63+
<version>2.4</version>
64+
</dependency>
6065
</dependencies>
6166
<parent>
6267
<groupId>org.sonatype.oss</groupId>

client/deploy-resources/gnu_pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
<artifactId>jbcrypt</artifactId>
5858
<version>0.4</version>
5959
</dependency>
60+
<dependency>
61+
<groupId>org.yaml</groupId>
62+
<artifactId>snakeyaml</artifactId>
63+
<version>2.4</version>
64+
</dependency>
6065
</dependencies>
6166
<parent>
6267
<groupId>org.sonatype.oss</groupId>

0 commit comments

Comments
 (0)