fix: Fix startup error thrown when built-in o11y suite is not install… #413
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build and Test" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Setup Java" | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: "checkout ${{ github.ref }}" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Build Higress Console Package | |
run: mvn clean package -DskipTests=true -f ./backend/pom.xml | |
- name: Upload Higress Console Package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: higress-console | |
path: backend/target/*.jar |