| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- name: Check emqx app standalone
- ## apps/emqx can be used as a rebar/mix dependency
- ## in other project, so we need to make sure apps/emqx
- ## as an Erlang/Elixir app works standalone
- on:
- pull_request:
- jobs:
- run_emqx_app_tests:
- strategy:
- matrix:
- builder:
- - 5.1-3
- otp:
- - 25.3.2-1
- # no need to use more than 1 version of Elixir, since tests
- # run using only Erlang code. This is needed just to specify
- # the base image.
- elixir:
- - 1.14.5
- os:
- - ubuntu22.04
- arch:
- - amd64
- runs-on:
- - aws-amd64
- - ubuntu-22.04
- use-self-hosted:
- - ${{ github.repository_owner == 'emqx' }}
- exclude:
- - runs-on: ubuntu-22.04
- use-self-hosted: true
- - runs-on: aws-amd64
- use-self-hosted: false
- runs-on: ${{ matrix.runs-on }}
- container: "ghcr.io/emqx/emqx-builder/${{ matrix.builder }}:${{ matrix.elixir}}-${{ matrix.otp }}-${{ matrix.os }}"
- defaults:
- run:
- shell: bash
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: run
- run: |
- git config --global --add safe.directory "$GITHUB_WORKSPACE"
- echo "git diff base: $GITHUB_BASE_REF"
- if [[ "$GITHUB_BASE_REF" =~ [0-9a-f]{8,40} ]]; then
- # base is a commit sha1
- compare_base="$GITHUB_BASE_REF"
- else
- repo="${GITHUB_REPOSITORY}"
- git remote -v
- remote="$(git remote -v | grep -E "github\.com(:|/)$repo((\.git)|(\s))" | grep fetch | awk '{print $1}')"
- git fetch "$remote" "$GITHUB_BASE_REF"
- compare_base="$remote/$GITHUB_BASE_REF"
- fi
- changed_files="$(git diff --name-only ${compare_base} HEAD apps/emqx)"
- if [ "$changed_files" = '' ]; then
- echo "nothing changed in apps/emqx, ignored."
- exit 0
- fi
- make ensure-rebar3
- cp rebar3 apps/emqx/
- cd apps/emqx
- ./rebar3 xref
- ./rebar3 dialyzer
- ./rebar3 eunit -v
- ./rebar3 ct --name 'test@127.0.0.1' -v --readable=true
- ./rebar3 proper -d test/props
- - uses: actions/upload-artifact@v3
- if: failure()
- with:
- name: logs-${{ matrix.runs-on }}
- path: apps/emqx/_build/test/logs
|