1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-20 13:23:00 +03:00

new build fix9

This commit is contained in:
Leonid Fedorov
2024-08-13 05:12:29 +04:00
parent d529bf5e8c
commit a92c5280b5

View File

@ -35,7 +35,7 @@ local Pipeline(branch, platform, event, arch='amd64', server='10.6-enterprise')
local pipeline = self,
local execInnerDocker(command, dockerImage, flags = '') =
'docker exec %s -t %s "bash -c \'%s\'" ' %[flags, dockerImage, command],
'docker exec %s -t %s %s' %[flags, dockerImage, command],
local installRpmDeb(pkg_format, rpmpackages, debpackages) =
if (pkg_format == 'rpm')
@ -123,8 +123,9 @@ local Pipeline(branch, platform, event, arch='amd64', server='10.6-enterprise')
'docker cp setup-repo.sh ' + smoke_docker_name + ':/',
execInnerDocker('bash /setup-repo.sh', smoke_docker_name),
execInnerDocker(installRpmDeb(pkg_format, 'foundationdb-server', 'foundationdb-clients jq'), smoke_docker_name),
execInnerDocker("fdbcli --exec 'writemode on; set foo bar; get foo'", smoke_docker_name),
execInnerDocker("fdbcli --exec \'writemode on; set foo bar; get foo\'", smoke_docker_name),
execInnerDocker('service foundationdb status', smoke_docker_name),
execInnerDocker("fdbcli --exec 'status json' | jq .client", smoke_docker_name),
],
},
]