remove auto-push #9
Workflow file for this run
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: 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 fetch gh-pages:gh-pages | |
git switch gh-pages | |
git pull gh-pages | |
git add dev/bench/data.js dev/bench/index.html | |
git commit -m "add Benchmark (customSmallerIsBetter) benchmark result for $GITHUB_SHA" | |
git push gh-pages:gh-pages --no-verify | |
git checkout - | |
# - name: Clean the deployment | |
# if: always() | |
# run: helm delete --namespace papyrus papyrus-${UNIQE_ID} |