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:
Ilya Shipitsin 2022-01-07 20:09:35 +05:00 committed by Willy Tarreau
parent b64ef3e3f8
commit 65eab587a2
1 changed files with 0 additions and 3 deletions

View File

@ -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