From 97a81b399365a6c4f83db0dcb23a6e5f3d6c1ae1 Mon Sep 17 00:00:00 2001 From: Gabriel Zurita Date: Tue, 3 Dec 2024 08:40:41 -0700 Subject: [PATCH] disable vro-streamlit in workflows https://github.com/department-of-veterans-affairs/abd-vro/pull/3814#discussion_r1867826060 --- .github/workflows/test-code.yml | 23 ++++++++++++----------- docker-compose.yml | 21 +++++++++++---------- settings.gradle | 2 +- 3 files changed, 24 insertions(+), 22 deletions(-) diff --git a/.github/workflows/test-code.yml b/.github/workflows/test-code.yml index 3779db891..577dbf0c3 100644 --- a/.github/workflows/test-code.yml +++ b/.github/workflows/test-code.yml @@ -158,12 +158,13 @@ jobs: with: files: domain-ee/** - - name: "Get changed vro-streamlit files" - if: '! inputs.run_all_tests' - id: vro-streamlit-changed-files-specific - uses: tj-actions/changed-files@v45 - with: - files: vro-streamlit/** + # NOTE: The vro-streamlit service is currently disabled because it is not actively used. + # - name: "Get changed vro-streamlit files" + # if: '! inputs.run_all_tests' + # id: vro-streamlit-changed-files-specific + # uses: tj-actions/changed-files@v45 + # with: + # files: vro-streamlit/** - name: "Install Python" if: inputs.run_all_tests || steps.changed-files-specific.outputs.any_changed == 'true' || steps.ee-changed-files-specific.outputs.any_changed == 'true' @@ -182,8 +183,8 @@ jobs: run: | ./gradlew :domain-ee:test - - name: "Run VRO Streamlit tests" - if: inputs.run_all_tests || steps.vro-streamlit-changed-files-specific.outputs.any_changed == 'true' - run: | - ./gradlew :vro-streamlit:check -# echo "skipping tests for now..." + # NOTE: The vro-streamlit service is currently disabled because it is not actively used. + # - name: "Run VRO Streamlit tests" + # if: inputs.run_all_tests || steps.vro-streamlit-changed-files-specific.outputs.any_changed == 'true' + # run: | + # ./gradlew :vro-streamlit:check diff --git a/docker-compose.yml b/docker-compose.yml index 7ea0da877..4d18df805 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -182,13 +182,14 @@ services: # depends_on: # <<: [ *svc-depends-on ] - vro-streamlit: - profiles: ["all", "streamlit"] - image: va/abd_vro-vro-streamlit:latest - ports: - - "8501:8501" - environment: - <<: [*common-vars] - STREAMLIT_SERVER_PORT: 8501 - networks: - - intranet + # NOTE: The vro-streamlit service is currently disabled because it is not actively used. + # vro-streamlit: + # profiles: ["all", "streamlit"] + # image: va/abd_vro-vro-streamlit:latest + # ports: + # - "8501:8501" + # environment: + # <<: [*common-vars] + # STREAMLIT_SERVER_PORT: 8501 + # networks: + # - intranet diff --git a/settings.gradle b/settings.gradle index 08bc0c13a..2132c1f8e 100644 --- a/settings.gradle +++ b/settings.gradle @@ -43,7 +43,7 @@ include ':shared:lib-hoppy' include ':svc-bgs-api' include ':svc-bip-api' // include ':svc-bie-kafka' # See: https://github.com/department-of-veterans-affairs/abd-vro/issues/3802 -include ':vro-streamlit' +// include ':vro-streamlit' # See: https://github.com/department-of-veterans-affairs/abd-vro/pull/3814#discussion_r1867826060 include ':domain-xample:xample-api-controller' include ':domain-xample:xample-shared'