From 242b1c9f2fc5393814e07cf41a39eb0b471beb3a Mon Sep 17 00:00:00 2001 From: David Gardner Date: Mon, 18 Dec 2023 16:43:42 -0800 Subject: [PATCH] Disable all steps except check - p2 --- .github/workflows/ci_pipe.yml | 98 ----------------------------------- 1 file changed, 98 deletions(-) diff --git a/.github/workflows/ci_pipe.yml b/.github/workflows/ci_pipe.yml index fe4b5c9f19..db6fa7b81a 100644 --- a/.github/workflows/ci_pipe.yml +++ b/.github/workflows/ci_pipe.yml @@ -100,101 +100,3 @@ jobs: - name: Check shell: bash run: ./morpheus/ci/scripts/github/checks.sh - - build: - name: Build - runs-on: linux-amd64-cpu16 - timeout-minutes: 60 - container: - credentials: - username: '$oauthtoken' - password: ${{ secrets.NGC_API_KEY }} - image: ${{ inputs.container }} - strategy: - fail-fast: true - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - lfs: false - path: 'morpheus' - - - name: Get AWS credentials using OIDC - uses: aws-actions/configure-aws-credentials@v1-node16 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - - - name: Build:linux:x86_64:gcc - shell: bash - run: ./morpheus/ci/scripts/github/build.sh - - test: - name: Test - runs-on: linux-amd64-gpu-v100-latest-1 - timeout-minutes: 60 - container: - credentials: - username: '$oauthtoken' - password: ${{ secrets.NGC_API_KEY }} - image: ${{ inputs.test_container }} - options: --cap-add=sys_nice - env: - NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} - PARALLEL_LEVEL: '10' - MERGE_EXAMPLES_YAML: '1' - strategy: - fail-fast: true - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - lfs: false - path: 'morpheus' - - - name: Get AWS credentials using OIDC - uses: aws-actions/configure-aws-credentials@v1-node16 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - - - name: Test:linux:x86_64:gcc - shell: bash - run: ./morpheus/ci/scripts/github/test.sh - - documentation: - name: Documentation - needs: [build] - runs-on: linux-amd64-cpu4 - timeout-minutes: 60 - container: - credentials: - username: '$oauthtoken' - password: ${{ secrets.NGC_API_KEY }} - image: ${{ inputs.container }} - env: - MERGE_DOCS_YAML: '1' - strategy: - fail-fast: true - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - lfs: false - path: 'morpheus' - - - name: Get AWS credentials using OIDC - uses: aws-actions/configure-aws-credentials@v1-node16 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - - - name: build_docs - shell: bash - run: ./morpheus/ci/scripts/github/docs.sh