@@ -64,8 +64,8 @@ permissions:
6464env :
6565 BUILD_TYPE : Release
6666 CICOLOR_FORCE : 1
67- local-checkout-path : ${{ (github.event_name == 'workflow_call' && inputs.checkout-path) || format('{0}-src', github.event.repository.name) }}
68- local-build-path : ${{ (github.event_name == 'workflow_call' && inputs.build-path) || format('{0}-build', github.event.repository.name) }}
67+ local_checkout_path : ${{ (github.event_name == 'workflow_call' && inputs.checkout-path) || format('{0}-src', github.event.repository.name) }}
68+ local_build_path : ${{ (github.event_name == 'workflow_call' && inputs.build-path) || format('{0}-build', github.event.repository.name) }}
6969
7070jobs :
7171 pre-check :
@@ -136,13 +136,13 @@ jobs:
136136 uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
137137 with :
138138 fetch-depth : 0
139- path : ${{ env.local-checkout-path }}
139+ path : ${{ env.local_checkout_path }}
140140
141141 - name : Detect C++ and CMake changes
142142 id : filter
143143 uses : Framework-R-D/phlex/.github/actions/detect-relevant-changes@main
144144 with :
145- repo-path : ${{ env.local-checkout-path }}
145+ repo-path : ${{ env.local_checkout_path }}
146146 base-ref : ${{ (github.event_name == 'workflow_call' && inputs.pr-base-sha) || github.event.pull_request.base.sha || github.event.before }}
147147 head-ref : ${{ (github.event_name == 'workflow_call' && inputs.pr-head-sha) || github.event.pull_request.head.sha || github.sha }}
148148 file-type : |
@@ -195,14 +195,14 @@ jobs:
195195 - name : Check out code
196196 uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
197197 with :
198- path : ${{ env.local-checkout-path }}
198+ path : ${{ env.local_checkout_path }}
199199 ref : ${{ needs.pre-check.outputs.sha }}
200200 repository : ${{ needs.pre-check.outputs.repo }}
201201
202202 - name : Setup build environment
203203 uses : Framework-R-D/phlex/.github/actions/setup-build-env@main
204204 with :
205- build-path : ${{ env.local-build-path }}
205+ build-path : ${{ env.local_build_path }}
206206
207207 - name : Announce CMake configuration
208208 run : echo "➡️ Configuring CMake..."
@@ -215,8 +215,8 @@ jobs:
215215 id : configure
216216 uses : Framework-R-D/phlex/.github/actions/configure-cmake@main
217217 with :
218- source-path : ${{ env.local-checkout-path }}
219- build-path : ${{ env.local-build-path }}
218+ source-path : ${{ env.local_checkout_path }}
219+ build-path : ${{ env.local_build_path }}
220220 build-type : ${{ env.BUILD_TYPE }}
221221 cpp-compiler : ${{ matrix.compiler == 'gcc' && 'g++' || 'clang++' }}
222222 extra-options : |
@@ -227,13 +227,13 @@ jobs:
227227 id : build
228228 uses : Framework-R-D/phlex/.github/actions/build-cmake@main
229229 with :
230- build-path : ${{ env.local-build-path }}
230+ build-path : ${{ env.local_build_path }}
231231
232232 - name : Run tests
233233 if : matrix.sanitizer != 'valgrind'
234234 run : |
235235 . /entrypoint.sh
236- cd "$GITHUB_WORKSPACE/${{ env.local-build-path }}"
236+ cd "$GITHUB_WORKSPACE/${{ env.local_build_path }}"
237237
238238 echo "➡️ Running tests..."
239239 echo "::group::Running ctest"
@@ -250,7 +250,7 @@ jobs:
250250 if : matrix.sanitizer == 'valgrind'
251251 run : |
252252 . /entrypoint.sh
253- cd "$GITHUB_WORKSPACE/${{ env.local-build-path }}"
253+ cd "$GITHUB_WORKSPACE/${{ env.local_build_path }}"
254254
255255 echo "➡️ Running Valgrind tests..."
256256 echo "::group::Running ctest -T memcheck"
0 commit comments