From 1230aa5b4835c798c4ed89ce126c21cf2d73a7d1 Mon Sep 17 00:00:00 2001 From: Randolph Settgast Date: Mon, 18 Dec 2023 16:45:26 -0800 Subject: [PATCH] run cuda build again...save container --- .github/workflows/build_and_test.yml | 2 +- .github/workflows/ci_tests.yml | 36 ++++++++++++++-------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 83e7e4f4430..68d64fc5909 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -180,6 +180,6 @@ jobs: # Remove the container and the workspace to avoid any conflict with the next run. echo github.workspace = ${{ github.workspace }} rm -rf ${{ github.workspace }}/* - docker rm -f ${CONTAINER_NAME} +# docker rm -f ${CONTAINER_NAME} exit ${EXIT_STATUS} diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index c16b3af4e81..e1acde16944 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -174,24 +174,24 @@ jobs: # If the 'ci: run integrated tests' PR label is found, the integrated tests will be run immediately after the cpu jobs. # Note: The integrated tests are optional and are (for the moment) run for convenience only. - run_integrated_tests: - needs: - - is_pull_request_a_draft - - cpu_builds - if: "${{ contains( fromJSON( needs.is_pull_request_a_draft.outputs.LABELS ), 'ci: run integrated tests') }}" - uses: ./.github/workflows/build_and_test.yml - secrets: inherit - with: - BUILD_AND_TEST_CLI_ARGS: --build-exe-only - BUILD_TYPE: integrated_tests - CMAKE_BUILD_TYPE: Release - DOCKER_IMAGE_TAG: ${{ needs.is_pull_request_a_draft.outputs.DOCKER_IMAGE_TAG }} - DOCKER_REPOSITORY: geosx/ubuntu22.04-gcc11 - ENABLE_HYPRE: ON - ENABLE_TRILINOS: OFF - GCP_BUCKET: geosx/integratedTests - RUNS_ON: streak - DOCKER_RUN_ARGS: "--cpus=4 --memory=128g" + # run_integrated_tests: + # needs: + # - is_pull_request_a_draft + # - cpu_builds + # if: "${{ contains( fromJSON( needs.is_pull_request_a_draft.outputs.LABELS ), 'ci: run integrated tests') }}" + # uses: ./.github/workflows/build_and_test.yml + # secrets: inherit + # with: + # BUILD_AND_TEST_CLI_ARGS: --build-exe-only + # BUILD_TYPE: integrated_tests + # CMAKE_BUILD_TYPE: Release + # DOCKER_IMAGE_TAG: ${{ needs.is_pull_request_a_draft.outputs.DOCKER_IMAGE_TAG }} + # DOCKER_REPOSITORY: geosx/ubuntu22.04-gcc11 + # ENABLE_HYPRE: ON + # ENABLE_TRILINOS: OFF + # GCP_BUCKET: geosx/integratedTests + # RUNS_ON: streak + # DOCKER_RUN_ARGS: "--cpus=4 --memory=128g" # If the 'ci: ready to be merged' PR label is found, the cuda jobs run immediately along side linux jobs. # Note: CUDA jobs should only be run if PR is ready to merge.