From 562258a7663a8d6447c46059743b173e19196e76 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 5 May 2021 23:14:13 -0400 Subject: Create cmake.yml (#1) * Create cmake.yml * Do not include limits.h for fun --- .github/workflows/cmake.yml | 49 +++++++++++++++++++++++++++++++++++++++++++++ lib/cleanpath.c | 11 +++++----- 2 files changed, 55 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/cmake.yml diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml new file mode 100644 index 0000000..bc094b7 --- /dev/null +++ b/.github/workflows/cmake.yml @@ -0,0 +1,49 @@ +name: CMake + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + tests: + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + include: + - name: Debug (Linux) + os: ubuntu-latest + build_type: Release + + - name: Debug (MacOS) + os: macos-latest + build_type: Release + + - name: Release (Linux) + os: ubuntu-latest + build_type: Release + + - name: Release (MacOS) + os: macos-latest + build_type: Release + + steps: + - uses: actions/checkout@v2 + + - name: Configure CMake + run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} + + - name: Build + run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} + + - name: Test + working-directory: ${{ github.workspace }}/build + run: ctest -C ${{ matrix.build_type }} + diff --git a/lib/cleanpath.c b/lib/cleanpath.c index 55d6c22..f94c66d 100644 --- a/lib/cleanpath.c +++ b/lib/cleanpath.c @@ -1,19 +1,20 @@ #include #include -#include #include -#include "cleanpath.h" #include "config.h" +#include "cleanpath.h" #if OS_LINUX -#ifdef HAVE_SYS_LIMIT_H +#if HAVE_SYS_LIMIT_H #include #endif // HAVE_SYS_LIMIT_H -#ifdef HAVE_LINUX_LIMIT_H +#if HAVE_LINUX_LIMIT_H #include #endif // HAVE_LINUX_LIMIT_H -#endif // OS_LINUX +#else +#include +#endif /** * Split path into parts by sep -- cgit