ci: add appup update check to ci
This commit is contained in:
parent
ef382bf34c
commit
8029670741
|
@ -6,7 +6,22 @@ jobs:
|
||||||
check_apps_version:
|
check_apps_version:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
erl_otp:
|
||||||
|
- erl23.2.7.2-emqx-3
|
||||||
|
os:
|
||||||
|
- ubuntu20.04
|
||||||
|
|
||||||
|
container: emqx/build-env:${{ matrix.erl_otp }}-${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Check apps version
|
- name: Check apps version
|
||||||
run: ./scripts/apps-version-check.sh
|
run: ./scripts/apps-version-check.sh
|
||||||
|
- name: Check relup (ce)
|
||||||
|
if: endsWith(github.repository, 'emqx')
|
||||||
|
run: ./scripts/update-appup.sh emqx --check
|
||||||
|
- name: Check relup (ee)
|
||||||
|
if: endsWith(github.repository, 'enterprise')
|
||||||
|
run: ./scripts/update-appup.sh emqx-ee --check
|
||||||
|
|
Loading…
Reference in New Issue