Skip to content

try auto-push

try auto-push #7

Workflow file for this run

name: Benchmarks
on:
workflow_dispatch:
push:
branches: [main, eran/ci/benchmark-tests]
jobs:
storage-benchmark:
runs-on: ubuntu-latest
permissions:
contents: "write"
id-token: "write"
steps:
- name: Checkout repository
uses: actions/checkout@v3
# - name: Set a unique run identifier
# run: echo "UNIQE_ID=${{ github.run_number }}-${{ github.run_attempt }}" >> $GITHUB_ENV
- id: "auth"
name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v1"
with:
credentials_json: "${{ secrets.GOOGLE_CI_SA_CREDENTIALS }}"
- id: "get-credentials"
name: Get GKE credentials
uses: "google-github-actions/get-gke-credentials@v1"
with:
cluster_name: "${{ secrets.GKE_CI_CLUSTER_NAME }}"
location: "${{ secrets.GKE_CI_CLUSTER_REGION }}"
- name: Run load test
run: sh -c "deployments/storage-benchmark/run_benchmark.bash 5m"
- name: Parse load test results
run: |
pwd
ls -al
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
# Run `github-action-benchmark` action
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
# What benchmark tool the output.txt came from
tool: 'customSmallerIsBetter'
# Where the output from the benchmark tool is stored
output-file-path: output.txt
# Where the previous data file is stored
external-data-json-path: ./cache/benchmark-data.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# - name: Setup upterm session
# uses: lhotari/action-upterm@v1
# # Push gh-pages branch by yourself
# - name: Push benchmark result
# run: git push remote gh-pages:gh-pages --no-verify
# - name: Clean the deployment
# if: always()
# run: helm delete --namespace papyrus papyrus-${UNIQE_ID}