You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.4 KiB
107 lines
3.4 KiB
name: Review app pipeline |
|
|
|
concurrency: |
|
group: review-${{ github.event.pull_request.number }} |
|
|
|
on: |
|
pull_request: |
|
types: |
|
- opened |
|
- synchronize |
|
- reopened |
|
workflow_dispatch: |
|
|
|
defaults: |
|
run: |
|
shell: bash |
|
|
|
env: |
|
app_repo_role: arn:aws:iam::815624722760:role/core-application-repo |
|
aws_region: eu-west-2 |
|
|
|
jobs: |
|
infra: |
|
name: Deploy review app infrastructure |
|
uses: communitiesuk/submit-social-housing-lettings-and-sales-data-infrastructure/.github/workflows/create_review_app_infra.yml@main |
|
with: |
|
key: ${{ github.event.pull_request.number }} |
|
app_repo_role: arn:aws:iam::815624722760:role/core-application-repo |
|
permissions: |
|
id-token: write |
|
|
|
code: |
|
name: Deploy review app code |
|
needs: [infra] |
|
uses: ./.github/workflows/aws_deploy.yml |
|
with: |
|
aws_account_id: 837698168072 |
|
aws_role_prefix: core-dev |
|
aws_task_prefix: core-review-${{ github.event.pull_request.number }} |
|
concurrency_tag: ${{ github.event.pull_request.number }} |
|
environment: review |
|
permissions: |
|
id-token: write |
|
|
|
performance: |
|
needs: [code] |
|
runs-on: ubuntu-latest |
|
with: |
|
aws_role_prefix: core-dev |
|
aws_task_prefix: core-review-${{ github.event.pull_request.number }} |
|
environment: review |
|
|
|
steps: |
|
- name: Configure AWS credentials |
|
uses: aws-actions/configure-aws-credentials@v3 |
|
with: |
|
aws-region: ${{ env.aws_region }} |
|
role-to-assume: ${{ env.app_repo_role }} |
|
|
|
- name: Login to Amazon ECR |
|
id: ecr-login |
|
uses: aws-actions/amazon-ecr-login@v1 |
|
with: |
|
mask-password: "true" |
|
|
|
- name: Run Performance Test |
|
env: |
|
ad_hoc_task_definition: ${{ inputs.aws_task_prefix }}-ad-hoc |
|
cluster: ${{ inputs.aws_task_prefix }}-app |
|
service: ${{ inputs.aws_task_prefix }}-app |
|
email: performance_testing_user@example.com |
|
password: password |
|
run: | |
|
echo install apache2-utils |
|
sudo apt-get update && sudo apt-get install -y apache2-utils |
|
echo get token |
|
TOKEN=$(curl -c token_cookies.txt -s https://review.submit-social-housing-data.levellingup.gov.uk/2621/account/sign-in | grep '<meta name="csrf-token"' | sed -n 's/.*content="\\([^"]*\\)".*/\\1/p') |
|
|
|
echo "Logging in..." |
|
|
|
curl -L -o nul -c login_cookies.txt -b token_cookies.txt -X POST https://review.submit-social-housing-data.levellingup.gov.uk/2621/account/sign-in \ |
|
-d "user[email]=$email" \ |
|
-d "user[password]=$password" \ |
|
-d "authenticity_token=$TOKEN" |
|
|
|
COOKIES=$(awk '/_data_collector_session/ { print $6, $7 }' login_cookies.txt | tr ' ' '=') |
|
|
|
echo "Running performance test..." |
|
ab -n 50 -c 50 -C "$COOKIES" 'https://review.submit-social-housing-data.levellingup.gov.uk/2621/lettings-logs' |
|
|
|
comment: |
|
name: Add link to PR |
|
needs: [code] |
|
runs-on: ubuntu-latest |
|
permissions: |
|
issues: write |
|
pull-requests: write |
|
|
|
steps: |
|
- name: Comment on PR with URL |
|
uses: unsplash/comment-on-pr@v1.3.0 |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
with: |
|
msg: "Created review app at https://review.submit-social-housing-data.levellingup.gov.uk/${{ github.event.pull_request.number }}" |
|
check_for_duplicate_msg: true |
|
duplicate_msg_pattern: Created review app at*
|
|
|