Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
endurodave committed Dec 8, 2024
1 parent 8372aca commit b6347d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cpp_delegates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2 # Checkout the repository code

- name: Set up C++ compiler
uses: actions/setup-cpp@v2 # Set up C++ compiler (GCC or Clang)
- name: Set up CMake
uses: cmake/setup-cmake@v3 # Set up CMake

- name: Set up GCC
uses: actions/setup-gcc@v1 # Set up GCC compiler (or use setup-clang if needed)

- name: Configure CMake
run: cmake -S . -B Build # Configure CMake to generate build files in 'Build' directory
Expand Down

0 comments on commit b6347d8

Please sign in to comment.