Skip to content

Update ci-maven.yml

Update ci-maven.yml #4

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_api_gateway:
runs-on: ubuntu-latest
# https://stackoverflow.com/a/70448851
permissions: write-all
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build api-gateway with Maven
run: mvn -B package --file api-gateway/pom.xml
build_openai_service:
runs-on: ubuntu-latest
# https://stackoverflow.com/a/70448851
permissions: write-all
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build openai-service with Maven
run: mvn -B package --file openai-service/pom.xml
success-job:
runs-on: ubuntu-latest
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [ build_api_gateway, build_openai_service ]
steps:
- name: Build is Succeeded
env:
NEEDS: ${{ toJSON(needs) }}
run: |
echo "$NEEDS"