diff options
Diffstat (limited to 'jjb/functest/xtesting-pi.yaml')
-rw-r--r-- | jjb/functest/xtesting-pi.yaml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/jjb/functest/xtesting-pi.yaml b/jjb/functest/xtesting-pi.yaml index 7b16e848f..3fbfaf034 100644 --- a/jjb/functest/xtesting-pi.yaml +++ b/jjb/functest/xtesting-pi.yaml @@ -73,6 +73,8 @@ volumes: '{volumes}' env: '{env}' network: '{network}' + uid: '{uid}' + gid: '{gid}' - builder: name: xtesting-pi-pull-containers @@ -111,8 +113,8 @@ else image={repo}:{port}/{container}:{tag} fi - mkdir -p $WORKSPACE/results - chown 1000:1000 $WORKSPACE/results + sudo mkdir -p $WORKSPACE/results + sudo chown {uid}:{gid} $WORKSPACE/results sudo docker run --rm \ --privileged={privileged} \ --network={network} \ @@ -216,6 +218,8 @@ - eighth privileged: 'false' network: bridge + uid: 1000 + gid: 1000 exclude: - tag: leguer test: eighth @@ -259,6 +263,8 @@ - seventh privileged: 'false' network: bridge + uid: 1000 + gid: 1000 jobs: - 'xtesting-pi-ollivier-xtesting-mts-{tag}-{test}-run' |