summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMitya Selivanov <0x7fffff@guattari.ru>2022-08-21 18:41:42 +0400
committerMitya Selivanov <0x7fffff@guattari.ru>2022-08-21 18:41:42 +0400
commit2868fec298af7c5236473ea7a6a6303c8f6adb5d (patch)
tree4d0882cccfcf50cbca920fa50cb0060a8b6f8bff /.github
parentb869349518f0504c9822a2eb112f0eab3c8ca8ed (diff)
downloadkit-2868fec298af7c5236473ea7a6a6303c8f6adb5d.zip
test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_and_test.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 2b5d0a3..617d289 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -53,30 +53,13 @@ jobs:
- uses: actions/checkout@v2
- name: Build
- if: runner.os != 'Windows'
run: |
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -B build -S .
cmake --build build --config $BUILD_TYPE
working-directory: ./source/test/integration/${{ matrix.name }}
- - name: Build with Visual Studio
- if: runner.os == 'Windows'
- shell: bash
- run: |
- cmake -B build -S .
- cmake --build build --config $BUILD_TYPE
- working-directory: ./source/test/integration/${{ matrix.name }}
-
- name: Run tests
- if: runner.os != 'Windows'
shell: bash
run: |
ctest -V -C $BUILD_TYPE
working-directory: ./source/test/integration/${{ matrix.name }}/build
-
- - name: Run tests on Windows
- if: runner.os == 'Windows'
- shell: bash
- run: |
- ctest -V
- working-directory: ./source/test/integration/${{ matrix.name }}/build