From 156662d4101d92c388b791da4d99b6cfb0d5b202 Mon Sep 17 00:00:00 2001 From: baiyli <105086653+baiyli@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:44:46 -0700 Subject: [PATCH] Update codebuild-ci.yml to not cancel ongoing integration test (#21) --- .github/workflows/codebuild-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codebuild-ci.yml b/.github/workflows/codebuild-ci.yml index bfae35b..3ad70af 100644 --- a/.github/workflows/codebuild-ci.yml +++ b/.github/workflows/codebuild-ci.yml @@ -64,6 +64,7 @@ jobs: runs-on: ubuntu-latest needs: [wait-for-approval] strategy: + fail-fast: false matrix: python-version: ["38", "39", "310", "311"] steps: @@ -73,7 +74,7 @@ jobs: role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} aws-region: us-west-2 role-duration-seconds: 3600 - - name: Run Unit Tests in Python ${{ matrix.python-version }} + - name: Run Integration Tests in Python ${{ matrix.python-version }} uses: aws-actions/aws-codebuild-run-build@v1 with: project-name: ${{ secrets.INTEGRATION_TEST_PROJECT_PREFIX }}${{ matrix.python-version }}