File tree Expand file tree Collapse file tree 2 files changed +34
-11
lines changed Expand file tree Collapse file tree 2 files changed +34
-11
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,29 @@ workflows:
10
10
filters :
11
11
branches :
12
12
ignore :
13
- - stable
14
- - v0.3.3
15
13
- sigmod2014contest
16
14
- gh-pages
15
+ - deploy :
16
+ requires :
17
+ - test
18
+ filters :
19
+ branches :
20
+ only : main
17
21
18
- jobs :
19
- test :
20
- resource_class : xlarge
21
- working_directory : ~/ldbc/ldbc_snb_datagen
22
+ executors :
23
+ my-executor :
22
24
machine :
23
25
image : ubuntu-2004:202008-01
26
+ working_directory : ~/ldbc/ldbc_snb_datagen
24
27
28
+ jobs :
29
+ test :
30
+ resource_class : xlarge
31
+ executor : my-executor
25
32
steps :
26
33
- checkout
27
34
- run : |
35
+ mkdir out/
28
36
DEBIAN_FRONTEND=noninteractive
29
37
sudo apt update
30
38
sudo apt install -y openjdk-8-jdk zip
@@ -56,11 +64,23 @@ jobs:
56
64
- run : tools/docker-run.sh --mode bi --scale-factor 0.003 --explode-edges
57
65
- run : tools/docker-run.sh --mode bi --scale-factor 0.003
58
66
- run : |
59
- # deploy CircleCI configuration to provide 'filters' instructions (and prevent failed build on gh-pages)
60
- cp -r .circleci dist/
67
+ # deploy CircleCI configuration to provide the 'filters' instructions (and prevent failed builds on the gh-pages branch )
68
+ mv .circleci dist/
61
69
# currently we only deploy a single data set (the last generated one)
62
- mv out social_network-bi
70
+ mv out/ social_network-bi/
63
71
zip -r dist/social_network-bi.zip social_network-bi/
72
+ - persist_to_workspace :
73
+ # Must be an absolute path, or relative path from working_directory. This is a directory on the container which is
74
+ # taken to be the root directory of the workspace.
75
+ root : .
76
+ # Must be relative path from root
77
+ paths :
78
+ - dist/
79
+ - slack/status
80
+ deploy :
81
+ executor : my-executor
82
+ steps :
83
+ - attach_workspace :
84
+ at : ~/ldbc/ldbc_snb_datagen
64
85
- gh-pages/deploy :
65
86
ssh-fingerprints : ' 60:8f:35:48:99:c0:ae:9f:71:6b:a9:66:19:21:95:7d'
66
- - slack/status
Original file line number Diff line number Diff line change 1
- # README
1
+ # LDBC SNB Datagen (Spark variant) – Latest artefacts
2
+
3
+ This README is deployed to < http://ldbc.github.io/ldbc_snb_datagen_spark > .
4
+
2
5
## Generated data sets
3
6
4
7
The following data sets are generated for the ` dev ` variant, to be used for the BI workload.
You can’t perform that action at this time.
0 commit comments