ci: better names to ci checks
This commit is contained in:
parent
33e9823317
commit
fdde829ab9
|
@ -233,3 +233,18 @@ jobs:
|
||||||
cd /LanguageTool
|
cd /LanguageTool
|
||||||
bash start.sh > /dev/null &
|
bash start.sh > /dev/null &
|
||||||
./emqx_schema_validate /tmp/${{ matrix.profile }}/lib/emqx_dashboard/priv/www/static/schema.json
|
./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) }}
|
||||||
|
|
|
@ -3,7 +3,7 @@ name: Code style check
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
code_style_check:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
otp:
|
otp:
|
||||||
|
|
|
@ -10,7 +10,7 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
elixir_release_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ghcr.io/emqx/emqx-builder/5.0-10:1.13.3-24.2.1-1-ubuntu20.04
|
container: ghcr.io/emqx/emqx-builder/5.0-10:1.13.3-24.2.1-1-ubuntu20.04
|
||||||
|
|
||||||
|
|
|
@ -519,3 +519,15 @@ jobs:
|
||||||
- uses: geekyeggo/delete-artifact@v1
|
- uses: geekyeggo/delete-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: emqx.tar
|
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) }}
|
||||||
|
|
|
@ -14,7 +14,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check_all:
|
run_emqx_app_tests:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
otp:
|
otp:
|
||||||
|
|
|
@ -215,7 +215,7 @@ jobs:
|
||||||
run: make coveralls
|
run: make coveralls
|
||||||
|
|
||||||
# do this in a separate job
|
# do this in a separate job
|
||||||
finish:
|
upload_coverdata:
|
||||||
needs: make_cover
|
needs: make_cover
|
||||||
runs-on: aws-amd64
|
runs-on: aws-amd64
|
||||||
steps:
|
steps:
|
||||||
|
@ -226,3 +226,18 @@ jobs:
|
||||||
curl -v -k https://coveralls.io/webhook \
|
curl -v -k https://coveralls.io/webhook \
|
||||||
--header "Content-Type: application/json" \
|
--header "Content-Type: application/json" \
|
||||||
--data "{\"repo_name\":\"$GITHUB_REPOSITORY\",\"repo_token\":\"$GITHUB_TOKEN\",\"payload\":{\"build_num\":$GITHUB_RUN_ID,\"status\":\"done\"}}" || true
|
--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) }}
|
||||||
|
|
Loading…
Reference in New Issue