Skip to content

fix(uat): update GGMQ-1-T20 to EMQX v2.0.0 config format #485

fix(uat): update GGMQ-1-T20 to EMQX v2.0.0 config format

fix(uat): update GGMQ-1-T20 to EMQX v2.0.0 config format #485

Workflow file for this run

name: Java CI UAT
on:
push:
branches:
- main
- uat-dev
pull_request:
branches: '**'
jobs:
build:
timeout-minutes: 60
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
if: matrix.os == 'ubuntu-latest'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven (not Windows)
working-directory: uat
run: mvn -ntp -U clean verify
if: matrix.os != 'windows-latest'
- name: Build with Maven (Windows)
working-directory: uat
env:
AWS_REGION: us-west-2
run: mvn -ntp -U clean verify
shell: cmd
if: matrix.os == 'windows-latest'