Skip to content

Commit 70684a4

Browse files
committed
Use working data set
1 parent 8c1c260 commit 70684a4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ jobs:
3232
- run:
3333
name: Download data
3434
command: |
35-
git clone --branch gh-pages --depth 1 https://github.com/ldbc/ldbc_snb_datagen
35+
mkdir data/
36+
cd data
37+
wget https://ldbc.github.io/ldbc_snb_data_converter/csv-composite-projected-fk-legacy-filenames.zip
38+
unzip csv-composite-projected-fk-legacy-filenames.zip
39+
cd ..
3640
- run:
3741
name: Load
3842
command: |
@@ -41,7 +45,8 @@ jobs:
4145
# Cypher
4246
cd cypher
4347
. scripts/environment-variables-default.sh
44-
export NEO4J_CSV_DIR=`pwd`/../ldbc_snb_datagen/social_network-csv-composite
48+
export NEO4J_CSV_DIR=`pwd`/../data/csv-composite-projected-fk-legacy-filenames
49+
export NEO4J_CSV_POSTFIX=.csv
4550
scripts/load-in-one-step.sh
4651
cd ..
4752
- run:

0 commit comments

Comments
 (0)