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-11-10 14:34:08 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-10 14:34:08 +0300
commit46c0f95f3911798b59ed35d5573e13d342e2f454 (patch)
tree0c2ed958fc4162083b4559a4017ed69bec3148b0 /.github
parent4349cd5538e44d829c90831d0c187f80f23953e6 (diff)
again
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 564821c1..e8b6ae95 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,6 +12,7 @@ jobs:
Linux:
name: Ubuntu 18.04
runs-on: ubuntu-18.04
+ if: success() || failure()
strategy:
matrix:
compiler: [clang++, g++, clang++-11, arm-linux-gnueabihf-g++]
@@ -28,7 +29,7 @@ jobs:
run: |
if [ "${{ matrix.compiler }}" = "clang++-11" ]; then
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -;
- echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main" >> /etc/apt/sources.list;
+ sudo echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main" >> /etc/apt/sources.list;
sudo apt update;
sudo apt install clang-11 libc++-11-dev libc++abi-11-dev libomp-11-dev;
export CMAKE_CONFIGURE_OPTIONS=-DCMAKE_TOOLCHAIN_FILE=../cmake/toolchain-linux-libc++.cmake;
@@ -58,6 +59,7 @@ jobs:
MacOS:
name: Mac OS 10.15
runs-on: macos-10.15
+ if: success() || failure()
strategy:
matrix:
configuration: [error_code, status_code]
@@ -91,6 +93,7 @@ jobs:
WinVS2019:
name: Windows VS2019
runs-on: windows-2019
+ if: success() || failure()
strategy:
matrix:
configuration: [error_code, status_code]
@@ -171,6 +174,7 @@ jobs:
env:
NAME: Install-${{ matrix.os }}-${{ matrix.configuration }}
runs-on: ${{ matrix.os }}
+ if: success() || failure()
steps:
- name: Install
@@ -196,6 +200,7 @@ jobs:
env:
NAME: Programs-${{ matrix.os }}
runs-on: ${{ matrix.os }}
+ if: success() || failure()
steps:
- uses: actions/checkout@v2