We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70bf0b9 commit a7d09adCopy full SHA for a7d09ad
.github/workflows/autotools-clang-10.yml
@@ -0,0 +1,27 @@
1
+name: "CI: autotools: clang 10"
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-20.04
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Build
13
+ run: |
14
+ # Prevent blocking apt install on a question during configuring of tzdata.
15
+ export ENV DEBIAN_FRONTEND=noninteractive
16
+ sudo apt update
17
+ sudo apt install mm-common clang-10 make --yes
18
+ export CC=clang-10 CXX=clang++-10
19
+ ./autogen.sh --enable-warnings=fatal
20
+ make
21
+ - name: Test
22
+ run: make check
23
+ - name: Distcheck
24
25
+ # distcheck runs configure again so we need to specify CC and CXX again.
26
27
+ make distcheck
0 commit comments