Skip to content

Commit 8221c75

Browse files
committed
absolute path
Signed-off-by: Daniel Kastl <[email protected]>
1 parent a4e025c commit 8221c75

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

.github/workflows/test-postgis.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,8 @@ jobs:
5050
- name: Checkout repository
5151
uses: actions/checkout@v4
5252

53-
- name: List repository files for debugging
54-
run: ls -R
55-
shell: bash
56-
5753
- name: Set script permissions
58-
run: chmod +x ./scripts/*.sh
54+
run: chmod +x /scripts/*.sh
5955
shell: bash
6056

6157
- name: List scripts directory for debugging
@@ -75,53 +71,53 @@ jobs:
7571
path: redmine/plugins/${{ env.PLUGIN_NAME }}
7672

7773
- name: Setup Environment
78-
run: ./scripts/setup_environment.sh
74+
run: /scripts/setup_environment.sh
7975
shell: bash
8076

8177
- name: Prepare Plugin
8278
working-directory: redmine/plugins/${{ env.PLUGIN_NAME }}
83-
run: ./scripts/prepare_plugin.sh
79+
run: /scripts/prepare_plugin.sh
8480
shell: bash
8581

8682
- name: Prepare Redmine source
8783
working-directory: redmine
88-
run: ./scripts/prepare_redmine.sh
84+
run: /scripts/prepare_redmine.sh
8985
shell: bash
9086

9187
- name: Adjust Gem environment
92-
run: ./scripts/adjust_gem_env.sh
88+
run: /scripts/adjust_gem_env.sh
9389
shell: bash
9490

9591
- name: Install Ruby dependencies
9692
working-directory: redmine
97-
run: ./scripts/install_ruby_dependencies.sh
93+
run: /scripts/install_ruby_dependencies.sh
9894
shell: bash
9995

10096
- name: Run Redmine rake tasks
10197
env:
10298
RAILS_ENV: test
10399
working-directory: redmine
104-
run: ./scripts/run_rake_tasks.sh
100+
run: /scripts/run_rake_tasks.sh
105101
shell: bash
106102

107103
- name: Zeitwerk check
108104
env:
109105
RAILS_ENV: test
110106
working-directory: redmine
111-
run: ./scripts/zeitwerk_check.sh
107+
run: /scripts/zeitwerk_check.sh
112108
shell: bash
113109

114110
- name: Run tests
115111
env:
116112
RAILS_ENV: test
117113
GOOGLE_CHROME_OPTS_ARGS: "headless,disable-gpu,no-sandbox,disable-dev-shm-usage"
118114
working-directory: redmine
119-
run: ./scripts/run_tests.sh
115+
run: /scripts/run_tests.sh
120116
shell: bash
121117

122118
- name: Run uninstall test
123119
env:
124120
RAILS_ENV: test
125121
working-directory: redmine
126-
run: ./scripts/run_uninstall_test.sh
122+
run: /scripts/run_uninstall_test.sh
127123
shell: bash

0 commit comments

Comments
 (0)