Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 2acffa24..00000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: "LLIO CI"
-
-on: [push, pull_request]
-
-jobs:
- build:
- name: ${{ matrix.config.name }}
- runs-on: ${{ matrix.config.os }}
- env: ${{ matrix.config.env }}
- strategy:
- fail-fast: false
- matrix:
- config:
- - {
- name: "MacOS 10.15",
- os: macos-10.15,
- env: [ CMAKE_CONFIGURE_OPTIONS: "" ],
- artifact: "llfio-v2.0-binaries-darwin64-${{ github.sha }}.tgz"
- }
-
- steps:
- - uses: actions/checkout@v2
-
- - name: "cmake tests (error code)"
- run: ctest -S .ci.cmake -VV --timeout 300 -DCTEST_CONFIGURE_OPTIONS=$CMAKE_CONFIGURE_OPTIONS