Skip to content

Commit

Permalink
CMake GitHub workflow: Run the tests of shelving functionality from two
Browse files Browse the repository at this point in the history
separate steps, that initialize the environment, and run a single test.

* .github/workflows/cmake.yml
  (env): No longer initialize the SVN_EXPERIMENTAL_COMMANDS environment
   variable.
  (Test shelf2, Test shelf3): New steps.

git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1922653 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rinrab committed Dec 23, 2024
1 parent ed4413f commit 9a22948
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ jobs:
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}
SVN_EXPERIMENTAL_COMMANDS: shelf3

steps:
- name: Prepare Environment (Windows)
Expand Down Expand Up @@ -169,3 +168,17 @@ jobs:
if: matrix.run_tests
working-directory: out
run: ctest --output-on-failure --verbose -C Release --parallel 16

- name: Test shelf2
if: matrix.run_tests
working-directory: out
env:
SVN_EXPERIMENTAL_COMMANDS: shelf2
run: ctest -R shelf2 --verbose -C Release

- name: Test shelf3
if: matrix.run_tests
working-directory: out
env:
SVN_EXPERIMENTAL_COMMANDS: shelf3
run: ctest -R shelf3 --verbose -C Release

0 comments on commit 9a22948

Please sign in to comment.