Skip to content

Commit a327438

Browse files
author
Ivan Zhakov
committed
GHA: Run test before installing artifacts in CMake workflow. Test should
run without installation. Autoconf based workflow already use this order. * .github/workflows/cmake.yml (Install): Move after all test steps. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1936131 13f79535-47bb-0310-9956-ffa450edef68
1 parent 127f94d commit a327438

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,6 @@ jobs:
240240
- name: Build CMake
241241
run: cmake --build out --config Release
242242

243-
- name: Install
244-
run: cmake --install out --config Release
245-
246243
- name: Run all tests
247244
id: run_all_tests
248245
if: matrix.run_tests
@@ -262,3 +259,6 @@ jobs:
262259
env:
263260
SVN_EXPERIMENTAL_COMMANDS: shelf3
264261
run: ctest -R shelf3 --verbose -C Release
262+
263+
- name: Install
264+
run: cmake --install out --config Release

0 commit comments

Comments
 (0)