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:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-05-13 00:55:49 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-05-13 00:55:49 +0300
commitd7f38ffc93b1e0ab62d3cfef7c26f3253df383dc (patch)
tree07c7e0e0781bc917c1a641c23b8706f5380f9820 /.github
parentdc696a87a36b8158593294895a117f8cc0629c37 (diff)
Hopefully reenable osx build on travis now they ship 10.15
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