From c2a271717d5eb65b6d1938a6bcea58539d176be0 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Fri, 23 Jun 2023 09:19:38 +0200 Subject: Remove GitHub CI script --- .github/workflows/build_and_test.yml | 60 ------------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 .github/workflows/build_and_test.yml (limited to '.github/workflows') 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 -- cgit v1.2.3