Skip to content

Commit

Permalink
cleanup presets
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoby committed Sep 26, 2024
1 parent 0d862c9 commit d11e5f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 40 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,25 @@ jobs:
cmake --build build
- name: Test
env:
TLSUV_TEST_LOG: 7
run: |
cd build
ctest --output-on-failure --no-compress-output --output-junit TEST-results.xml -T test
- name: Memory Check
if: always() && matrix.os == 'ubuntu'
env:
TLSUV_TEST_LOG: 7
run: |
cd build
ctest --output-on-failure --no-compress-output --output-junit TEST-memcheck.xml -T memcheck
- name: upload test summary
if: always()
uses: test-summary/action@v2
uses: mikepenz/action-junit-report@v4
with:
paths: ${{ github.workspace }}/build/TEST-*.xml
report_paths: ${{ github.workspace }}/build/TEST-*.xml

- name: upload test report
if: always()
Expand Down
38 changes: 0 additions & 38 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,43 +122,5 @@
"name": "ci-mingw",
"inherits": [ "ci-build", "ci-win-mingw", "dev-mode", "vcpkg" ]
}
],
"buildPresets": [
{
"name": "ci-ubuntu",
"configurePreset": "ci-ubuntu"
},
{
"name": "ci-macOS",
"configurePreset": "ci-macOS"
},
{
"name": "ci-windows",
"configurePreset": "ci-windows"
}
],
"testPresets": [
{
"name": "test-env",
"hidden": true,
"environment": {
"TLSUV_TEST_LOG": "7"
}
},
{
"name": "ci-ubuntu",
"configurePreset": "ci-ubuntu",
"inherits": [ "test-env" ]
},
{
"name": "ci-macOS",
"configurePreset": "ci-macOS",
"inherits": [ "test-env" ]
},
{
"name": "ci-windows",
"configurePreset": "ci-windows",
"inherits": [ "test-env" ]
}
]
}

0 comments on commit d11e5f2

Please sign in to comment.