diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-08-01 18:03:07 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-08-01 18:03:07 -0400 |
| commit | cef914b131981e45fe90c74179d6a5703165895b (patch) | |
| tree | 1e71eb0683f0db86d92ec28890cf9dd4ace7da17 | |
| parent | d24ecfd961d01780d4ba360eef14585c194c6232 (diff) | |
| download | see_defs-cef914b131981e45fe90c74179d6a5703165895b.tar.gz | |
cmake test
| -rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 0ef00d1..37c5a2d 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -36,7 +36,11 @@ jobs: - name: Build run: | - ${{ matrix.c_compiler }} -v -std=gnu99 -Wall -Wextra -o see_defs main.c + #${{ matrix.c_compiler }} -v -std=gnu99 -Wall -Wextra -o see_defs main.c + mkdir build + cd build + cmake .. + make - name: Test - run: ./see_defs + run: ./build/see_defs |
