From 85db7caa75136368a67af7516d012666fc11d096 Mon Sep 17 00:00:00 2001 From: Vadim Melnik Date: Fri, 13 Dec 2024 13:57:10 +0200 Subject: [PATCH] Move Capture to reprostim-videocapture, #116. --- .github/workflows/ccpp.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 59a533b..a03f9fa 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -28,21 +28,21 @@ jobs: cd build cmake .. make - working-directory: Capture + working-directory: src/reprostim-capture - name: Test "reprostim-videocapture -h" run: | ./reprostim-videocapture -V ./reprostim-videocapture -h - working-directory: Capture/build/videocapture + working-directory: src/reprostim-capture/build/videocapture - name: Test "reprostim-screencapture -h" run: | ./reprostim-screencapture -V ./reprostim-screencapture -h - working-directory: Capture/build/screencapture + working-directory: src/reprostim-capture/build/screencapture - name: Run tests with CTest run: | ctest --output-on-failure - working-directory: Capture/build + working-directory: src/reprostim-capture/build