File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,21 @@ name: Testing workflow
49
49
AWS_ACCESS_KEY_ID :
50
50
description : the access key id to the aws s3 bucket.
51
51
required : true
52
+ CLICKHOUSE_TEST_STAT_LOGIN :
53
+ description : username for ci db.
54
+ required : true
55
+ CLICKHOUSE_TEST_STAT_PASSWORD :
56
+ description : password for ci db.
57
+ required : true
58
+ CLICKHOUSE_TEST_STAT_URL :
59
+ description : url for ci db.
60
+ required : true
61
+ DOCKER_PASSWORD :
62
+ description : token to upload docker images.
63
+ required : true
64
+ ROBOT_TOKEN :
65
+ description : token to update ci status.
66
+ required : true
52
67
53
68
env :
54
69
# Force the stdout and stderr streams to be unbuffered
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ module_dir = p.abspath(p.dirname(__file__))
14
14
SCRIPT_PATH = Path (__file__ ).absolute ()
15
15
IMAGE_TYPE = "binary-builder"
16
16
IMAGE_NAME = f"altinityinfra/{ IMAGE_TYPE } "
17
- TEMP_PATH = os .getenv ("TEMP_PATH" , p .abspath (p .join (module_dir , "./tmp" )))
17
+ DEFAULT_TMP_PATH = SCRIPT_PATH .parent .absolute () / 'tmp'
18
+ TEMP_PATH = Path (os .getenv ("TEMP_PATH" , DEFAULT_TMP_PATH ))
18
19
19
20
class BuildException (Exception ):
20
21
pass
You can’t perform that action at this time.
0 commit comments