summaryrefslogtreecommitdiff
path: root/.github/workflows/autotools-clang-10.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/autotools-clang-10.yml')
-rw-r--r--.github/workflows/autotools-clang-10.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/autotools-clang-10.yml b/.github/workflows/autotools-clang-10.yml
deleted file mode 100644
index 84e9f73..0000000
--- a/.github/workflows/autotools-clang-10.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: "CI: autotools: clang 10"
-
-on: [push]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
- container: ubuntu:20.04
-
- steps:
- - uses: actions/checkout@v1
- - name: Build
- run: |
- # Prevent blocking the install on a question during configuring of tzdata.
- export ENV DEBIAN_FRONTEND=noninteractive
- apt update
- apt install build-essential mm-common clang-10 --yes
- export CXX=clang++-10
- ./autogen.sh --enable-warnings=fatal
- make
- - name: Test
- run: make check
- - name: Distcheck
- run: |
- # distcheck runs configure again so we need to specify CXX again.
- export CXX=clang++-10
- make distcheck