From f89e1f52c9c99fc7f16f3c66ed3a07adabafa42b Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 24 Oct 2023 19:01:19 -0400 Subject: [PATCH] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 4d79b5c..908dc17 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -17,23 +17,27 @@ jobs: # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. # You can convert this to a matrix build if you need cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest + runs-on: self-hosted steps: - uses: actions/checkout@v3 - #- name: Configure CMake + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - #run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + run: cmake -B ${{github.workspace}}/ -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build + working-directory: ${{github.workspace}} # Build your program with the given configuration - run: cmake ${{github.workspace}}/ && make - - #- name: Test - # working-directory: ${{github.workspace}}/build + run: make -j32 + - name: BuildTest + working-directory: ${{github.workspace}} # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - #run: ctest -C ${{env.BUILD_TYPE}} + run: cmake -DCMAKE_BUILD_TYPE=Test ./ + - name: Test + working-directory: ${{github.workspace}} + run: make -j32 +