Hotfix for circleci problem where directory is owned by root

Same commit as d45837d596, easier
to make it manually due to merge conflicts.
release-8.3
Onder Kalaci 2019-10-22 18:01:34 +02:00
parent 83a760aacd
commit ee5d991480
1 changed files with 13 additions and 13 deletions

View File

@ -22,7 +22,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-multi)', command: 'install-and-test-ext check-multi'}}
- {run: {name: 'Install and Test (check-multi)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-multi'}}
- {codecov/upload: {flags: 'test_10,multi'}}
test-10_check-tt-van-mx:
docker:
@ -30,7 +30,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-tt-van-mx)', command: 'install-and-test-ext check-multi-task-tracker-extra check-vanilla check-multi-mx'}}
- {run: {name: 'Install and Test (check-tt-van-mx)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-multi-task-tracker-extra check-vanilla check-multi-mx'}}
- {codecov/upload: {flags: 'test_10,tracker,vanilla,mx'}}
test-10_check-iso-work-fol:
docker:
@ -38,7 +38,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-iso-work-fol)', command: 'install-and-test-ext check-isolation check-worker'}}
- {run: {name: 'Install and Test (check-iso-work-fol)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-isolation check-worker'}}
- {codecov/upload: {flags: 'test_10,isolation,worker'}}
test-10_check-fol:
docker:
@ -49,7 +49,7 @@ jobs:
- run:
name: 'Enable core dumps'
command: 'ulimit -c unlimited'
- {run: {name: 'Install and Test (fol)', command: 'install-and-test-ext check-follower-cluster'}}
- {run: {name: 'Install and Test (fol)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-follower-cluster'}}
- run:
command: |
mkdir -p /tmp/core_dumps
@ -63,14 +63,14 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-failure)', command: 'install-and-test-ext check-failure'}}
- {run: {name: 'Install and Test (check-failure)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-failure'}}
test-11_check-multi:
docker:
- {image: 'citusdata/exttester-11:latest'}
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-multi)', command: 'install-and-test-ext check-multi'}}
- {run: {name: 'Install and Test (check-multi)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-multi'}}
- {codecov/upload: {flags: 'test_11,multi'}}
test-11_check-non-adaptive-multi:
@ -79,7 +79,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'install-and-test-ext check-multi-non-adaptive'}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-multi-non-adaptive'}}
- {codecov/upload: {flags: 'test_11,multi'}}
test-11_check-non-adaptive-failure:
@ -88,7 +88,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'install-and-test-ext check-failure-non-adaptive'}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-failure-non-adaptive'}}
- {codecov/upload: {flags: 'test_11,failure'}}
test-11_check-non-adaptive-isolation:
@ -97,7 +97,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'install-and-test-ext check-isolation-non-adaptive'}}
- {run: {name: 'Install and Test (check-non-adaptive-executors)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-isolation-non-adaptive'}}
- {codecov/upload: {flags: 'test_11,isolation'}}
@ -107,7 +107,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-tt-van-mx)', command: 'install-and-test-ext check-multi-task-tracker-extra check-vanilla check-multi-mx'}}
- {run: {name: 'Install and Test (check-tt-van-mx)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-multi-task-tracker-extra check-vanilla check-multi-mx'}}
- {codecov/upload: {flags: 'test_11,tracker,vanilla,mx'}}
test-11_check-iso-work-fol:
docker:
@ -115,7 +115,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-iso-work-fol)', command: 'install-and-test-ext check-isolation check-worker'}}
- {run: {name: 'Install and Test (check-iso-work-fol)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-isolation check-worker'}}
- {codecov/upload: {flags: 'test_11,isolation,worker'}}
test-11_check-fol:
docker:
@ -126,7 +126,7 @@ jobs:
- run:
name: 'Enable core dumps'
command: 'ulimit -c unlimited'
- {run: {name: 'Install and Test (fol)', command: 'install-and-test-ext check-follower-cluster'}}
- {run: {name: 'Install and Test (fol)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-follower-cluster'}}
- run:
command: |
mkdir -p /tmp/core_dumps
@ -140,7 +140,7 @@ jobs:
working_directory: /home/circleci/project
steps:
- {attach_workspace: {at: .}}
- {run: {name: 'Install and Test (check-failure)', command: 'install-and-test-ext check-failure'}}
- {run: {name: 'Install and Test (check-failure)', command: 'chown -R circleci:circleci /home/circleci && install-and-test-ext check-failure'}}
workflows:
version: 2
build_and_test: