Skip to content

Commit 218eb6a

Browse files
- Docker permisssions.
1 parent 3a28fad commit 218eb6a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,12 +1536,16 @@ jobs:
15361536
if: success() && env.CI_IS_EXPRESS != 'true' && matrix.platform == 'linux/amd64' && env.BUILD_IMAGE_REQUIRED == 'true' && matrix.db_backend == 'sqlite'
15371537
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && 20 || vars.DEFAULT_STEP_TIMEOUT_MIN }}
15381538
run: |
1539+
sudo rm -rf test/tmp || true
1540+
mkdir -p test/tmp
15391541
python cicd/python/build.py --robot-test --config='{ "variables": { "EXECUTION_PLATFORM": "docker" } }'
15401542
15411543
- name: Run POSTGRES BACKEND robot mocked functional tests
15421544
if: success() && env.CI_IS_EXPRESS != 'true' && matrix.platform == 'linux/amd64' && env.BUILD_IMAGE_REQUIRED == 'true' && matrix.db_backend == 'postgres_tcp'
15431545
timeout-minutes: ${{ vars.DEFAULT_LONG_STEP_TIMEOUT_MIN == '' && 40 || vars.DEFAULT_LONG_STEP_TIMEOUT_MIN }}
15441546
run: |
1547+
sudo rm -rf test/tmp || true
1548+
mkdir -p test/tmp
15451549
echo "## Stray flask apps to be killed before robot tests ##"
15461550
pgrep -f flask | xargs kill -9 || true
15471551
echo "## End ##"
@@ -1569,6 +1573,8 @@ jobs:
15691573
AZURE_INTEGRATION_TESTING_SUB_ID: ${{ secrets.AZURE_INTEGRATION_TESTING_SUB_ID }}
15701574
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
15711575
run: |
1576+
sudo rm -rf test/tmp || true
1577+
mkdir -p test/tmp
15721578
echo "## Stray flask apps to be killed before robot tests ##"
15731579
pgrep -f flask | xargs kill -9 || true
15741580
echo "## End ##"

0 commit comments

Comments
 (0)