Skip to content

Commit 25a11a0

Browse files
committed
Try absolute path to tmp folder for github actions
1 parent 47b31dd commit 25a11a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
# REDMINE_SECRET_KEY_BASE: supersecretkey
5353
REDMINE_PLUGINS_MIGRATE: true
5454
volumes:
55-
- ../.redmine-temp/redmine-60002_data/files:/usr/src/redmine/files
56-
- ../.redmine-temp/redmine-60002_data/sqlite:/usr/src/redmine/sqlite
55+
- /tmp/.redmine-temp/redmine-60002_data/files:/usr/src/redmine/files
56+
- /tmp/.redmine-temp/redmine-60002_data/sqlite:/usr/src/redmine/sqlite
5757

5858
strategy:
5959
fail-fast: false

tests/Behat/behat.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ github-actions:
2525
contexts:
2626
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
2727
redmineVersion: '6.0.2'
28-
rootPath: '%paths.base%/../../../.redmine-temp'
28+
rootPath: '/tmp/.redmine-temp'
2929
redmine_50105:
3030
contexts:
3131
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
3232
redmineVersion: '5.1.5'
33-
rootPath: '%paths.base%/../../../.redmine-temp'
33+
rootPath: '/tmp/.redmine-temp'
3434
redmine_50010:
3535
contexts:
3636
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
3737
redmineVersion: '5.0.10'
38-
rootPath: '%paths.base%/../../../.redmine-temp'
38+
rootPath: '/tmp/.redmine-temp'

0 commit comments

Comments
 (0)