diff --git a/.github/workflows/ci_pipe.yml b/.github/workflows/ci_pipe.yml index 9b8c55e5e..08ff218cf 100644 --- a/.github/workflows/ci_pipe.yml +++ b/.github/workflows/ci_pipe.yml @@ -19,9 +19,6 @@ run-name: CI Pipeline on: workflow_call: inputs: - aws_region: - default: 'us-west-2' - type: string run_check: required: true type: boolean @@ -47,7 +44,6 @@ on: required: true env: - AWS_DEFAULT_REGION: ${{ inputs.aws_region }} AWS_ACCESS_KEY_ID: "${{ secrets.GHA_AWS_ACCESS_KEY_ID }}" AWS_SECRET_ACCESS_KEY: "${{ secrets.GHA_AWS_SECRET_ACCESS_KEY }}" CHANGE_TARGET: "${{ github.base_ref }}" diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 1178a10d1..9b456e4ef 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -33,8 +33,8 @@ jobs: with: run_check: ${{ startsWith(github.ref_name, 'pull-request/') }} run_package_conda: ${{ !startsWith(github.ref_name, 'pull-request/') }} - container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-driver-230131 - test_container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-test-230131 + container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-driver-230213 + test_container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-test-230213 secrets: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} CONDA_TOKEN: ${{ secrets.CONDA_TOKEN }} diff --git a/ci/scripts/github/build.sh b/ci/scripts/github/build.sh index 7e6db5e6a..c1eae4d58 100755 --- a/ci/scripts/github/build.sh +++ b/ci/scripts/github/build.sh @@ -26,6 +26,7 @@ rapids-logger "Check versions" python3 --version cmake --version ninja --version +sccache --version if [[ "${BUILD_CC}" == "gcc" ]]; then rapids-logger "Building with GCC" diff --git a/ci/scripts/github/common.sh b/ci/scripts/github/common.sh index ccd36ab71..8765d51e6 100644 --- a/ci/scripts/github/common.sh +++ b/ci/scripts/github/common.sh @@ -59,8 +59,8 @@ export DISPLAY_ARTIFACT_URL="${DISPLAY_URL}${ARTIFACT_ENDPOINT}" # Set sccache env vars export SCCACHE_S3_KEY_PREFIX=mrc-${NVARCH}-${BUILD_CC} -export SCCACHE_BUCKET=rapids-sccache -export SCCACHE_REGION="${AWS_DEFAULT_REGION}" +export SCCACHE_BUCKET=rapids-sccache-east +export SCCACHE_REGION="us-east-2" export SCCACHE_IDLE_TIMEOUT=32768 #export SCCACHE_LOG=debug