diff --git a/.github/workflows/ci-maven.yml b/.github/workflows/ci-maven.yml deleted file mode 100644 index ed44a78..0000000 --- a/.github/workflows/ci-maven.yml +++ /dev/null @@ -1,67 +0,0 @@ -# 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 "Results of dependent jobs:" - for job in $NEEDS; do - echo "$job" - done