Skip to content

CI: fix docs parity updates #1799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/bot_templates/PARITY_COVERAGE_DOCS_PR.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 📖 Parity Metrics Docs Update Report 📖
This PR has been automatically generated to update the AWS parity coverage docs.
It aggregates the latest parity coverage test results from our [test pipeline on CircleCI](https://app.circleci.com/pipelines/github/localstack/localstack/) as well as from our Pro integration tests.
It aggregates the latest parity coverage test results from our [test pipeline on GitHub](https://github.com/localstack/localstack/actions/workflows/aws-main.yml?query=branch%3Amaster) as well as from our Pro integration tests.

## 👷🏽 Handle this PR
The following options describe how to interact with this PR / the auto-update:
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/docs-parity-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ jobs:
- name: Download scripts from meta repository
run: |
curl -o /tmp/get_latest_github_metrics.sh -L https://raw.githubusercontent.com/localstack/meta/main/scripts/get_latest_github_metrics.sh -H 'Accept: application/vnd.github.v3.raw'
curl -o /tmp/get_latest_circleci_metrics.sh -L https://raw.githubusercontent.com/localstack/meta/main/scripts/get_latest_circleci_metrics.sh -H 'Accept: application/vnd.github.v3.raw'
chmod +x /tmp/get_latest_github_metrics.sh /tmp/get_latest_circleci_metrics.sh
chmod +x /tmp/get_latest_github_metrics.sh

- name: Download metrics data from Moto Integration test pipeline (GitHub)
working-directory: docs
Expand Down Expand Up @@ -82,12 +81,25 @@ jobs:
WORKFLOW: "AWS / Build, Test, Push"
RESOURCE_FOLDER: "metrics-implementation-details"

- name: Download metrics data from latest Community test run (CircleCI)
- name: Download metrics data from Community pipeline (GitHub)
working-directory: docs
run: /tmp/get_latest_github_metrics.sh ./target master
env:
CIRCLE_CI_TOKEN: ${{ secrets.CIRCLE_CI_TOKEN }}
run: /tmp/get_latest_circleci_metrics.sh ./target
GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }}
REPOSITORY_NAME: localstack
ARTIFACT_ID: parity-metric-raw-amd*
WORKFLOW: "AWS / Build, Test, Push"
PREFIX_ARTIFACT: community-integration-test

- name: Download coverage (capture-notimplemented) data from Community pipeline (GitHub)
working-directory: docs
run: /tmp/get_latest_github_metrics.sh ./target master
env:
GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }}
REPOSITORY_NAME: localstack
ARTIFACT_ID: capture-notimplemented
WORKFLOW: "AWS / Build, Test, Push"
RESOURCE_FOLDER: "metrics-implementation-details/community"

- name: Create Parity Coverage Docs
working-directory: docs
Expand Down