diff options
| author | hristo <[email protected]> | 2021-01-25 11:44:30 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-25 10:44:30 +0100 |
| commit | 4bf7b00013f7efe222d02171e176bb827a90fad9 (patch) | |
| tree | bda85687fff7232a111a9ee3718f9965b24cf742 /.github | |
| parent | 1d23e1569219f22376144999de07900c7409d13f (diff) | |
| download | raylib-4bf7b00013f7efe222d02171e176bb827a90fad9.tar.gz raylib-4bf7b00013f7efe222d02171e176bb827a90fad9.zip | |
Removing test file. (#1545)
This test file is just testing compilation with the library works correctly but is no longer needed because:
- it is not cross platform
- it taps into the CTest system which is better suited for real unit/integration tests
- it can be incorporated into the pipeline of github actions instead in the future
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cmake.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 11aabbb0..52fbdd80 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -41,12 +41,12 @@ jobs: # Execute the build. You can specify a specific target with "--target <NAME>" run: cmake --build . --config $env:BUILD_TYPE -# - name: Test -# working-directory: ${{github.workspace}}/build -# shell: powershell -# # 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 + - name: Test + working-directory: ${{github.workspace}}/build + shell: powershell + # 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 build_linux: name: Linux Build @@ -85,9 +85,9 @@ jobs: # Execute the build. You can specify a specific target with "--target <NAME>" run: cmake --build . --config $BUILD_TYPE -# - name: Test -# working-directory: ${{github.workspace}}/build -# shell: bash -# # Execute tests defined by the CMake configuration. -# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail -# run: ctest -C $BUILD_TYPE
\ No newline at end of file + - name: Test + working-directory: ${{github.workspace}}/build + shell: bash + # Execute tests defined by the CMake configuration. + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: ctest -C $BUILD_TYPE
\ No newline at end of file |
