Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1544,14 +1544,13 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- name: a previous unit-test job failed
if: ${{ contains(join(needs.*.result, ','), 'failure') }}
- name: a previous unit-test job failed or was cancelled
if: ${{ contains(join(needs.*.result, ','), 'failure') || contains(join(needs.*.result, ','), 'cancelled') }}
run: |
echo "::error title=ERROR::one of the unit-tests failed!"
echo "${{ join(needs.*.result, ',') }}"
echo "::error title=ERROR::one of the unit-tests failed or was cancelled!"
exit 1
- name: all the previous unit-tests were run successfully or skipped
if: ${{ !contains(join(needs.*.result, ','), 'failure') }}
if: ${{ !contains(join(needs.*.result, ','), 'failure') && !contains(join(needs.*.result, ','), 'cancelled') }}
run: echo "::notice All good!"

integration-test-webserver-01:
Expand Down Expand Up @@ -1876,13 +1875,13 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- name: a previous integration-test job failed
if: ${{ contains(join(needs.*.result, ','), 'failure') }}
- name: a previous integration-test job failed or was cancelled
if: ${{ contains(join(needs.*.result, ','), 'failure') || contains(join(needs.*.result, ','), 'cancelled') }}
run: |
echo "::error title=ERROR::one of the integration-tests failed!"
echo "::error title=ERROR::one of the integration-tests failed or was cancelled!"
exit 1
- name: all the previous integration-tests were run successfully or skipped
if: ${{ !contains(join(needs.*.result, ','), 'failure') }}
if: ${{ !contains(join(needs.*.result, ','), 'failure') && !contains(join(needs.*.result, ','), 'cancelled') }}
run: echo "::notice All good!"

system-test-public-api:
Expand Down Expand Up @@ -2111,13 +2110,13 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- name: a previous system-test job failed
if: ${{ contains(join(needs.*.result, ','), 'failure') }}
- name: a previous system-test job failed or was cancelled
if: ${{ contains(join(needs.*.result, ','), 'failure') || contains(join(needs.*.result, ','), 'cancelled') }}
run: |
echo "::error title=ERROR::one of the system-tests failed!"
echo "::error title=ERROR::one of the system-tests failed or was cancelled!"
exit 1
- name: all the previous system-tests were run successfully or skipped
if: ${{ !contains(join(needs.*.result, ','), 'failure') }}
if: ${{ !contains(join(needs.*.result, ','), 'failure') && !contains(join(needs.*.result, ','), 'cancelled') }}
run: echo "::notice All good!"

deploy:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
""" Application's metadata
"""Application's metadata."""

"""
from typing import Final

from models_library.basic_types import VersionStr
Expand Down
Loading