Skip to content

Commit

Permalink
Merge pull request #286 from fingerprintjs/ci/combine_deploy_test_bra…
Browse files Browse the repository at this point in the history
…nch_and_e2e

ci: combine deploy test branch workflow with e2e test branch workflow
  • Loading branch information
necipallef authored Sep 19, 2024
2 parents 18e9e07 + df5af77 commit b86d35b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 51 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/deploy_test_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,43 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: Deploy prepared in [${{ steps.date.outputs.today }}]

run-e2e-for-test-branch:
needs: [deploy-test-branch]
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
name: Run e2e for test branch
runs-on: ubuntu-latest
steps:
- name: Git clone
uses: actions/checkout@v4
- name: configure AWS credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 #v4.0.2
with:
role-to-assume: ${{secrets.AWS_E2E_ROLE_ARN}}
aws-region: ${{secrets.AWS_E2E_REGION}}
- name: Trigger AWS CodePipeline
run: |
codepipeline_execution_id=$(aws codepipeline start-pipeline-execution --name ${{vars.AWS_E2E_TEST_BRANCH_CODEPIPELINE_NAME}} --query 'pipelineExecutionId' --output text)
echo "Pipeline execution ID: $codepipeline_execution_id"
echo "codepipeline_execution_id=$codepipeline_execution_id" >> $GITHUB_ENV
- name: Poll Pipeline Status
id: poll-status
run: |
while true; do
sleep 30
status=$(aws codepipeline get-pipeline-execution \
--pipeline-name ${{vars.AWS_E2E_TEST_BRANCH_CODEPIPELINE_NAME}} \
--pipeline-execution-id ${{ env.codepipeline_execution_id }} \
--query 'pipelineExecution.status' --output text)
echo "Current pipeline status: $status"
if [[ "$status" == "Succeeded" ]]; then
echo "Pipeline execution succeeded!"
exit 0
elif [[ "$status" == "Failed" ]]; then
echo "Pipeline execution failed!"
exit 1
fi
done
51 changes: 0 additions & 51 deletions .github/workflows/e2e_test_branch.yml

This file was deleted.

0 comments on commit b86d35b

Please sign in to comment.