Skip to content

Commit

Permalink
Update buildRunTestWorkflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Liu committed Dec 3, 2023
1 parent 59f7358 commit 447b34a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildRunTestWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 447b34a

Please sign in to comment.