|
35 | 35 | with: |
36 | 36 | node-version: '20' |
37 | 37 |
|
| 38 | + - name: Download scripts from meta repository |
| 39 | + run: | |
| 40 | + 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' |
| 41 | + 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' |
| 42 | + chmod +x /tmp/get_latest_github_metrics.sh /tmp/get_latest_circleci_metrics.sh |
| 43 | +
|
38 | 44 | - name: Download metrics data from Moto Integration test pipeline (GitHub) |
39 | 45 | working-directory: docs |
40 | | - run: ./scripts/get_latest_github_metrics.sh ./target main |
| 46 | + run: /tmp/get_latest_github_metrics.sh ./target main |
41 | 47 | env: |
42 | 48 | GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }} |
43 | 49 | REPOSITORY_NAME: localstack-moto-test-coverage |
|
48 | 54 |
|
49 | 55 | - name: Download metrics data from Terraform Integration test pipeline (GitHub) |
50 | 56 | working-directory: docs |
51 | | - run: ./scripts/get_latest_github_metrics.sh ./target main |
| 57 | + run: /tmp/get_latest_github_metrics.sh ./target main |
52 | 58 | env: |
53 | 59 | GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }} |
54 | 60 | REPOSITORY_NAME: localstack-terraform-test |
|
58 | 64 |
|
59 | 65 | - name: Download metrics data from Pro pipeline (GitHub) |
60 | 66 | working-directory: docs |
61 | | - run: ./scripts/get_latest_github_metrics.sh ./target master |
| 67 | + run: /tmp/get_latest_github_metrics.sh ./target master |
62 | 68 | env: |
63 | 69 | GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }} |
64 | 70 | REPOSITORY_NAME: localstack-ext |
|
68 | 74 |
|
69 | 75 | - name: Download coverage (capture-notimplemented) data from Pro pipeline (GitHub) |
70 | 76 | working-directory: docs |
71 | | - run: ./scripts/get_latest_github_metrics.sh ./target master |
| 77 | + run: /tmp/get_latest_github_metrics.sh ./target master |
72 | 78 | env: |
73 | 79 | GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }} |
74 | 80 | REPOSITORY_NAME: localstack-ext |
|
80 | 86 | working-directory: docs |
81 | 87 | env: |
82 | 88 | CIRCLE_CI_TOKEN: ${{ secrets.CIRCLE_CI_TOKEN }} |
83 | | - run: ./scripts/get_latest_circleci_metrics.sh ./target |
| 89 | + run: /tmp/get_latest_circleci_metrics.sh ./target |
84 | 90 |
|
85 | 91 |
|
86 | 92 | - name: Create Parity Coverage Docs |
|
0 commit comments