diff --git a/.github/workflows/run-end2end-tests.yml b/.github/workflows/run-end2end-tests.yml index 3be4ea29..5ef3f0de 100644 --- a/.github/workflows/run-end2end-tests.yml +++ b/.github/workflows/run-end2end-tests.yml @@ -45,6 +45,7 @@ jobs: with: config: mxd/kind.config.yaml cluster_name: mxd + - name: "Install nginx ingress controller" run: |- echo "::notice title=nginx ingress on KinD::For details how to run nginx ingress on KinD check https://kind.sigs.k8s.io/docs/user/ingress/#ingress-nginx" @@ -58,6 +59,7 @@ jobs: with: java-version: '22' distribution: 'temurin' + - name: "Build Runtime Docker Images" working-directory: mxd-runtimes run: |- diff --git a/.github/workflows/verify-backend-service.yaml b/.github/workflows/verify-backend-service.yaml index 1017d9b3..71d40e3e 100644 --- a/.github/workflows/verify-backend-service.yaml +++ b/.github/workflows/verify-backend-service.yaml @@ -22,7 +22,7 @@ on: branches: - main paths: - - 'mxd/backend-service/**' + - 'mxd-runtimes/backend-service/**' # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -42,6 +42,7 @@ jobs: with: distribution: 'temurin' java-version: '21' - - - run: ./gradlew test - working-directory: mxd/backend-service \ No newline at end of file + + - name: Run Backend-Service tets + working-directory: mxd-runtimes + run: ./gradlew :backend-service:test