ci: better names to ci checks

This commit is contained in:
Zaiming (Stone) Shi 2022-04-26 17:36:09 +02:00
parent 33e9823317
commit fdde829ab9
6 changed files with 46 additions and 4 deletions

View File

@ -233,3 +233,18 @@ jobs:
cd /LanguageTool
bash start.sh > /dev/null &
./emqx_schema_validate /tmp/${{ matrix.profile }}/lib/emqx_dashboard/priv/www/static/schema.json
packaging_allgood:
runs-on: ubuntu-20.04
if: always()
needs:
- linux
- windows
- mac
steps:
- name: Check if all packging builds succeeded
uses: re-actors/alls-green@release/v1
with:
#allowed-failures:
#allowed-skips:
jobs: ${{ toJSON(needs) }}

View File

@ -3,7 +3,7 @@ name: Code style check
on: [pull_request]
jobs:
build:
code_style_check:
strategy:
matrix:
otp:

View File

@ -10,7 +10,7 @@ on:
workflow_dispatch:
jobs:
build:
elixir_release_build:
runs-on: ubuntu-latest
container: ghcr.io/emqx/emqx-builder/5.0-10:1.13.3-24.2.1-1-ubuntu20.04

View File

@ -519,3 +519,15 @@ jobs:
- uses: geekyeggo/delete-artifact@v1
with:
name: emqx.tar
integration_tests_allgood:
runs-on: ubuntu-20.04
if: always()
needs: [advanced_feat,pgsql_authn_authz,JWT_authn,mysql_authn_authz,built_in_database_authn_authz]
steps:
- name: Check if all integration tests succeeded
uses: re-actors/alls-green@release/v1
with:
#allowed-failures:
#allowed-skips:
jobs: ${{ toJSON(needs) }}

View File

@ -14,7 +14,7 @@ on:
pull_request:
jobs:
check_all:
run_emqx_app_tests:
strategy:
matrix:
otp:

View File

@ -215,7 +215,7 @@ jobs:
run: make coveralls
# do this in a separate job
finish:
upload_coverdata:
needs: make_cover
runs-on: aws-amd64
steps:
@ -226,3 +226,18 @@ jobs:
curl -v -k https://coveralls.io/webhook \
--header "Content-Type: application/json" \
--data "{\"repo_name\":\"$GITHUB_REPOSITORY\",\"repo_token\":\"$GITHUB_TOKEN\",\"payload\":{\"build_num\":$GITHUB_RUN_ID,\"status\":\"done\"}}" || true
functional_tests_allgood:
runs-on: ubuntu-20.04
if: always()
needs:
- eunit_and_proper
- ct_docker
- ct
steps:
- name: Check if all functional tests succeeded
uses: re-actors/alls-green@release/v1
with:
#allowed-failures:
#allowed-skips:
jobs: ${{ toJSON(needs) }}