Skip to content

Commit

Permalink
[NOID] Use Neo 4.4.24
Browse files Browse the repository at this point in the history
  • Loading branch information
gem-neo4j committed Jul 17, 2023
1 parent cff6823 commit c696b93
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ jobs:
matrix:
project: ['core', 'full', 'processor', 'test-utils', 'core-it', 'full-it']
env:
DOCKER_ENTERPRISE_DEV_URL: ${{ secrets.DOCKER_ENTERPRISE_DEV_URL }}
DOCKER_COMMUNITY_DEV_URL: ${{ secrets.DOCKER_COMMUNITY_DEV_URL }}
DOCKER_ENTERPRISE_FOUR_FOUR_URL: ${{ secrets.DOCKER_ENTERPRISE_FOUR_FOUR_URL }}
DOCKER_COMMUNITY_FOUR_FOUR_URL: ${{ secrets.DOCKER_COMMUNITY_FOUR_FOUR_URL }}
ENTERPRISE_TAR: enterprise-docker.tar
COMMUNITY_TAR: community-docker.tar

runs-on: ubuntu-latest
needs: compile
steps:
- uses: actions/checkout@v3
- name: Download neo4j dev docker container
- name: Download neo4j 4.4 docker container
if: matrix.project == 'it'
run: |
curl -s -L0 -u "${TEAMCITY_USER}:${TEAMCITY_PASSWORD}" -X GET ${DOCKER_ENTERPRISE_FOUR_FOUR_URL} -o ${ENTERPRISE_TAR} &
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'java'
id 'java-library'
id 'com.github.johnrengelman.shadow' version '4.0.3' apply false
id "com.bmuschko.nexus" version "2.3.1"
id 'maven-publish'
Expand All @@ -20,7 +20,7 @@ allprojects {
description = """neo4j-apoc-procedures"""
}

apply plugin: 'java'
apply plugin: 'java-library'
if (System.env.CI != null)
apply from: 'teamcity-repository.gradle'

Expand All @@ -37,7 +37,7 @@ repositories {
}

subprojects {
apply plugin: 'java'
apply plugin: 'java-library'

repositories {

Expand Down Expand Up @@ -72,8 +72,8 @@ subprojects {
// neo4jDockerImage system property is used in TestContainerUtil
systemProperties 'user.language' : 'en' ,
'user.country ' : 'US',
'neo4jDockerImage' : project.hasProperty("neo4jDockerVersionOverride") ? 'neo4j:' + project.getProperty("neo4jDockerVersionOverride") + '-enterprise-debian' : 'neo4j:4.4.22-enterprise',
'neo4jCommunityDockerImage': project.hasProperty("neo4jDockerVersionOverride") ? 'neo4j:' + project.getProperty("neo4jDockerVersionOverride") + '-debian': 'neo4j:4.4.22'
'neo4jDockerImage' : project.hasProperty("neo4jDockerVersionOverride") ? 'neo4j:' + project.getProperty("neo4jDockerVersionOverride") + '-enterprise-debian' : 'neo4j:4.4.24-enterprise',
'neo4jCommunityDockerImage': project.hasProperty("neo4jDockerVersionOverride") ? 'neo4j:' + project.getProperty("neo4jDockerVersionOverride") + '-debian': 'neo4j:4.4.24'

maxHeapSize = "5G"
forkEvery = 50
Expand Down Expand Up @@ -119,7 +119,7 @@ apply from: "licenses-3rdparties.gradle"
ext {
publicDir = "${project.rootDir}"
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "4.4.22"
neo4jVersion = "4.4.24"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.17.6'
Expand Down
2 changes: 1 addition & 1 deletion teamcity-repository.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ allprojects {
plugins.withType(JavaLibraryPlugin) {
repositories {
maven {
name = 'teamcity-neo4j-4.4'
name = 'teamcity-neo4j-44'
url = System.getenv('TEAMCITY_FOUR_FOUR_URL')
credentials {
username System.getenv('TEAMCITY_USER')
Expand Down

0 comments on commit c696b93

Please sign in to comment.