File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
8
8
runs-on : ubuntu-latest
9
- container : ubuntu:19.10
9
+ container : ubuntu:20.04
10
10
11
11
steps :
12
12
- uses : actions/checkout@v1
13
13
- name : Build
14
14
run : |
15
+ # Prevent blocking apt install on a question during configuring of tzdata.
16
+ export ENV DEBIAN_FRONTEND=noninteractive
15
17
apt update
16
- apt install mm-common clang-9 --yes
17
- export CXX=clang++-9
18
+ apt install mm-common clang-9 make --yes
19
+ export CC=clang-9 CXX=clang++-9
18
20
./autogen.sh --enable-warnings=fatal
19
21
make
20
22
- name : Test
21
23
run : make check
22
24
- name : Distcheck
23
25
run : |
24
- # distcheck runs configure again so we need to specify CXX again.
25
- export CXX=clang++-9
26
+ # distcheck runs configure again so we need to specify CC and CXX again.
27
+ export CC=clang-9 CXX=clang++-9
26
28
make distcheck
You can’t perform that action at this time.
0 commit comments