File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def prepare_extlist(value):
19
19
if "pg_pathman" in l :
20
20
# remove duplicates and reorder extension list to move pg_pathman to tail
21
21
nl = sorted (list (set (l )), cmp = lambda a ,b : 1 if a == "pg_pathman" else - 1 )
22
- new_value = "'{}'" .format ("," .join (nl ))
22
+ new_value = "'{0 }'" .format ("," .join (nl ))
23
23
return new_value
24
24
else :
25
25
return value
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ if [ "`id -un`" = "root" ]; then
17
17
else
18
18
groupadd ci
19
19
useradd -g ci ci
20
- chown -R ci:ci .
20
+ # chown -R ci:ci .
21
+ find . -type d -exec chown ci:ci {} +
21
22
fi
22
23
su ci -c ./.ci/build_and_test_world
23
24
else
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
PATH=C:\Windows\system32;C:\Perl64\bin;C:\Program Files\Git\cmd;C:\msys64\usr\bin
3
3
4
+ REM Copy source-repo to CI temporary catalog
5
+ cp -r postgrespro/* .
6
+
4
7
IF " %ARCH% " == " " SET ARCH = X86
5
8
IF " %ARCH% " == " x86" SET ARCH = X86
6
9
IF " %ARCH% " == " x64" SET ARCH = X64
7
10
IF " %ARCH% " == " amd64" SET ARCH = X64
11
+ IF " %ARCH% " == " AMD64" SET ARCH = X64
8
12
IF " %SDK% " == " " SET SDK = SDK71
9
13
10
14
echo BUILD_ID=%BUILD_ID%
You can’t perform that action at this time.
0 commit comments