Keep building on errors

Doing so allows for more than one error to be detected in builds
This commit is contained in:
Benny Baumann 2020-10-15 07:25:03 +02:00 committed by cgzones
parent 1df7fa387a
commit 2f9381d867
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ jobs:
- name: Configure
run: ./configure --enable-werror --enable-linux-affinity
- name: Build
run: make
run: make -k
- name: Distcheck
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-werror --enable-linux-affinity"
@ -36,7 +36,7 @@ jobs:
- name: Configure
run: ./configure --enable-werror --enable-linux-affinity
- name: Build
run: make
run: make -k
- name: Distcheck
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-werror --enable-linux-affinity"
@ -51,7 +51,7 @@ jobs:
- name: Configure
run: ./configure --enable-werror --enable-openvz --enable-cgroup --enable-vserver --enable-ancient-vserver --enable-taskstats --enable-unicode --enable-hwloc --enable-setuid --enable-delayacct
- name: Build
run: make
run: make -k
- name: Distcheck
run: make distcheck DISTCHECK_CONFIGURE_FLAGS='--enable-werror --enable-openvz --enable-cgroup --enable-vserver --enable-ancient-vserver --enable-taskstats --enable-unicode --enable-hwloc --enable-setuid --enable-delayacct'