From 447b34ae9e82a7b10dafdc9eedc34d27be991e00 Mon Sep 17 00:00:00 2001 From: Chong Liu Date: Sun, 3 Dec 2023 16:08:24 +0800 Subject: [PATCH] Update buildRunTestWorkflow.yml --- .github/workflows/buildRunTestWorkflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildRunTestWorkflow.yml b/.github/workflows/buildRunTestWorkflow.yml index 589db7e..931a95b 100644 --- a/.github/workflows/buildRunTestWorkflow.yml +++ b/.github/workflows/buildRunTestWorkflow.yml @@ -32,21 +32,21 @@ jobs: - name: Tool Versions run: cmake --version - # Step: Build all the tests - - name: Build all the Executables + # Step: Build all the Libraries and Executables + - name: Build all the Libraries and Executables run: | mkdir build cd build cmake .. cmake --build . - # Step: Run all test executables in the build/bin directory + # Step: Run all test executables in the output/exe/main directory - name: Run Main Executable run: | chmod +x .github/workflows/testRunner/runMain.sh .github/workflows/testRunner/runMain.sh - # Step: Run all test executables in the build/bin directory + # Step: Run all test executables in the output/exe/test directory - name: Run all GTests Executables run: | chmod +x .github/workflows/testRunner/runGTests.sh