summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2023-06-23 09:19:38 +0200
committerMitya Selivanov <automainint@guattari.tech>2023-06-23 09:19:38 +0200
commitc2a271717d5eb65b6d1938a6bcea58539d176be0 (patch)
tree1563847ff67906ef616e217dab24b286c49c6332
parent3ece7980f5ecb5a51987611f91892ec0a5a214bc (diff)
downloadkit-c2a271717d5eb65b6d1938a6bcea58539d176be0.zip
Remove GitHub CI script
-rw-r--r--.github/workflows/build_and_test.yml60
1 files changed, 0 insertions, 60 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
deleted file mode 100644
index c14b6c2..0000000
--- a/.github/workflows/build_and_test.yml
+++ /dev/null
@@ -1,60 +0,0 @@
-name: Build and test
-
-on:
- push:
- branches: [ dev, stable ]
- pull_request:
- branches: [ dev, stable ]
- schedule:
- - cron: '0 0 */16 * *'
- workflow_dispatch:
-
-env:
- BUILD_TYPE: Debug
-
-jobs:
- build:
- strategy:
- matrix:
- os: [ ubuntu-latest, macos-latest, windows-2019 ]
-
- runs-on: ${{ matrix.os }}
-
- steps:
- - uses: actions/checkout@v3
-
- - name: Build
- shell: bash
- run: |
- cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -B build -S .
- cmake --build build --config $BUILD_TYPE
-
- - name: Run tests
- shell: bash
- working-directory: ${{ github.workspace }}/build
- run: |
- ctest -V -C $BUILD_TYPE
-
- integration:
- strategy:
- matrix:
- os: [ ubuntu-latest, macos-latest, windows-2019 ]
- name: [ fetch_content, find_package ]
-
- runs-on: ${{ matrix.os }}
-
- steps:
- - uses: actions/checkout@v3
-
- - name: Build
- shell: bash
- working-directory: ./source/test/integration/${{ matrix.name }}
- run: |
- cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -B build -S .
- cmake --build build --config $BUILD_TYPE
-
- - name: Run tests
- shell: bash
- working-directory: ./source/test/integration/${{ matrix.name }}/build
- run: |
- ctest -V -C $BUILD_TYPE