CI: github actions: clean default step conditions
step condition "if: ${{ !failure() }}" was added in 2ef4c7c843
during my experiments. As Tim Dsterhus mentioned, that condition is default and may be omitted.
This commit is contained in:
parent
b64ef3e3f8
commit
65eab587a2
|
@ -87,7 +87,6 @@ jobs:
|
||||||
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"
|
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"
|
||||||
sudo make install
|
sudo make install
|
||||||
- name: Show HAProxy version
|
- name: Show HAProxy version
|
||||||
if: ${{ !failure() }}
|
|
||||||
id: show-version
|
id: show-version
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Show dynamic libraries."
|
echo "::group::Show dynamic libraries."
|
||||||
|
@ -102,11 +101,9 @@ jobs:
|
||||||
haproxy -vv
|
haproxy -vv
|
||||||
echo "::set-output name=version::$(haproxy -v |awk 'NR==1{print $3}')"
|
echo "::set-output name=version::$(haproxy -v |awk 'NR==1{print $3}')"
|
||||||
- name: Install problem matcher for VTest
|
- name: Install problem matcher for VTest
|
||||||
if: ${{ !failure() }}
|
|
||||||
# This allows one to more easily see which tests fail.
|
# This allows one to more easily see which tests fail.
|
||||||
run: echo "::add-matcher::.github/vtest.json"
|
run: echo "::add-matcher::.github/vtest.json"
|
||||||
- name: Run VTest for HAProxy ${{ steps.show-version.outputs.version }}
|
- name: Run VTest for HAProxy ${{ steps.show-version.outputs.version }}
|
||||||
if: ${{ !failure() }}
|
|
||||||
id: vtest
|
id: vtest
|
||||||
run: |
|
run: |
|
||||||
# This is required for macOS which does not actually allow to increase
|
# This is required for macOS which does not actually allow to increase
|
||||||
|
|
Loading…
Reference in New Issue