Update benchmarks #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update benchmarks | |
on: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.test }} Test | |
strategy: | |
matrix: | |
include: | |
- test: static | |
dir: static-subgraph | |
- test: guid | |
dir: guid-response | |
- test: awareness | |
dir: jwt-client-awareness | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Run test | |
run: task ${{ matrix.test }} | |
env: | |
APOLLO_KEY: ${{ secrets.APOLLO_KEY }} | |
APOLLO_GRAPH_REF: ${{ secrets.APOLLO_GRAPH_REF }} | |
- name: Save artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.test }}-results | |
path: tests/${{ matrix.dir }}/results | |
generate_report: | |
name: Generate report | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
- name: Download static results | |
uses: actions/download-artifact@v3 | |
with: | |
name: static-results | |
path: tests/static-subgraph/results | |
- name: Download guid results | |
uses: actions/download-artifact@v3 | |
with: | |
name: guid-results | |
path: tests/guid-response/results | |
- name: Download awareness results | |
uses: actions/download-artifact@v3 | |
with: | |
name: awareness-results | |
path: tests/jwt-client-awareness/results | |
- name: Generate report | |
run: task generate-report | |
- name: Upload report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: report | |
path: results-generator/results.md |