Merge pull request #8 from musabbozkurt/modify-ci-maven-file #6
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
# 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 | |
build_payment_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 payment-service with Maven | |
run: mvn -B package --file payment-service/pom.xml | |
build_service_registry: | |
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 service-registry with Maven | |
run: mvn -B package --file service-registry/pom.xml | |
build_student_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 student-service with Maven | |
run: mvn -B package --file student-service/pom.xml | |
build_swagger_application: | |
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 swagger-application with Maven | |
run: mvn -B package --file swagger-application/pom.xml | |
success-job: | |
runs-on: ubuntu-latest | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} | |
needs: [ build_api_gateway, build_openai_service, build_payment_service, build_service_registry, build_student_service, build_swagger_application ] | |
steps: | |
- name: Build is Succeeded | |
env: | |
NEEDS: ${{ toJSON(needs) }} | |
run: | | |
echo "$NEEDS" |