Bump anyhow from 1.0.72 to 1.0.75 #369
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
# Regression Detection | |
# | |
# This workflow runs our regression detection experiments, which are relative | |
# evaluations of the base SHA for the PR to whatever SHA was just pushed into | |
# the project (unless that SHA happens to be master branch HEAD). The goal is to | |
# give quick-ish feedback on all-up lading for a variety of configs as to | |
# whether throughput performance has gone down, gotten more variable in the | |
# pushed SHA. | |
# | |
# Regression detection is always done relative to the pushed SHA, meaning any | |
# changes you introduce to the experiment will be picked up both for the base | |
# SHA variant and your current SHA. Tags are SHA-SHA. The first SHA is the one | |
# that triggered this workflow, the second is the one of the lading being | |
# tested. For comparison images the two SHAs are identical. | |
name: Regression Detector (untrusted) | |
on: | |
pull_request: | |
jobs: | |
cancel-previous: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/[email protected] | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
all_but_latest: true # can cancel workflows scheduled later | |
compute-metadata: | |
name: Compute metadata for regression experiments | |
runs-on: ubuntu-22.04 | |
outputs: | |
pr-number: ${{ steps.pr-metadata.outputs.PR_NUMBER }} | |
comparison: ${{ steps.comparison.outputs.COMPARISON }} | |
comparison-tag: ${{ steps.comparison.outputs.COMPARISON_TAG }} | |
baseline: ${{ steps.baseline.outputs.BASELINE }} | |
baseline-tag: ${{ steps.baseline.outputs.BASELINE_TAG }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.base_ref }} | |
path: baseline-lading | |
- name: Setup PR metadata | |
id: pr-metadata | |
run: | | |
echo "PR_NUMBER=${{ github.event.number }}" >> $GITHUB_OUTPUT | |
- name: Setup baseline variables | |
id: baseline | |
run: | | |
pushd baseline-lading | |
export BASELINE_SHA=$(git rev-parse HEAD) | |
popd | |
export BASELINE_TAG="${{ github.event.pull_request.head.sha }}-${BASELINE_SHA}" | |
echo "baseline sha is: ${BASELINE_SHA}" | |
echo "baseline tag is: ${BASELINE_TAG}" | |
echo "BASELINE=${BASELINE_SHA}" >> $GITHUB_OUTPUT | |
echo "BASELINE_TAG=${BASELINE_TAG}" >> $GITHUB_OUTPUT | |
- name: Setup comparison variables | |
id: comparison | |
run: | | |
export COMPARISON_SHA=${{ github.event.pull_request.head.sha }} | |
export COMPARISON_TAG="${{ github.event.pull_request.head.sha }}-${{ github.event.pull_request.head.sha }}" | |
echo "comparison sha is: ${COMPARISON_SHA}" | |
echo "comparison tag is: ${COMPARISON_TAG}" | |
echo "COMPARISON=${COMPARISON_SHA}" >> $GITHUB_OUTPUT | |
echo "COMPARISON_TAG=${COMPARISON_TAG}" >> $GITHUB_OUTPUT | |
## | |
## BUILD | |
## | |
build-baseline: | |
name: Build baseline Lading container | |
runs-on: ubuntu-22.04 | |
needs: | |
- compute-metadata | |
steps: | |
- uses: colpal/actions-clean@v1 | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ needs.compute-soak-meta.outputs.baseline-sha }} | |
path: baseline-lading | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/[email protected] | |
- name: Build 'lading' target image | |
uses: docker/build-push-action@v3 | |
with: | |
context: baseline-lading/ | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
file: regression/Dockerfile | |
builder: ${{ steps.buildx.outputs.name }} | |
outputs: type=docker,dest=${{ runner.temp }}/baseline-image.tar | |
tags: | | |
lading:${{ needs.compute-metadata.outputs.pr-number }}-${{ needs.compute-metadata.outputs.baseline-tag }} | |
- name: Upload image as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: baseline-image | |
path: "${{ runner.temp }}/baseline-image.tar" | |
build-comparison: | |
name: Build comparison lading container | |
runs-on: ubuntu-22.04 | |
needs: | |
- compute-metadata | |
steps: | |
- uses: colpal/actions-clean@v1 | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ needs.compute-soak-meta.outputs.comparison-sha }} | |
path: comparison-lading | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/[email protected] | |
- name: Build 'lading' target image | |
uses: docker/build-push-action@v3 | |
with: | |
context: comparison-lading/ | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
file: regression/Dockerfile | |
builder: ${{ steps.buildx.outputs.name }} | |
outputs: type=docker,dest=${{ runner.temp }}/comparison-image.tar | |
tags: | | |
lading:${{ needs.compute-metadata.outputs.pr-number }}-${{ needs.compute-metadata.outputs.comparison-tag }} | |
- name: Upload image as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: comparison-image | |
path: "${{ runner.temp }}/comparison-image.tar" | |
transmit-metadata: | |
name: Transmit metadata to trusted workflow | |
runs-on: ubuntu-22.04 | |
needs: | |
- compute-metadata | |
steps: | |
- name: Write out metadata | |
run: | | |
echo "COMPARISON_TAG=${{ needs.compute-metadata.outputs.pr-number }}-${{ needs.compute-metadata.outputs.comparison-tag }}" > ${{ runner.temp }}/meta | |
echo "COMPARISON_SHA=${{ needs.compute-metadata.outputs.comparison }}" >> ${{ runner.temp }}/meta | |
echo "BASELINE_TAG=${{ needs.compute-metadata.outputs.pr-number }}-${{ needs.compute-metadata.outputs.baseline-tag }}" >> ${{ runner.temp }}/meta | |
echo "BASELINE_SHA=${{ needs.compute-metadata.outputs.baseline }}" >> ${{ runner.temp }}/meta | |
echo "CHECKOUT_SHA=${{ github.sha }}" >> ${{ runner.temp }}/meta | |
echo "HEAD_SHA=${{ github.event.pull_request.head.sha }}" >> ${{ runner.temp }}/meta | |
echo "BASE_SHA=${{ github.event.pull_request.base.sha }}" >> ${{ runner.temp }}/meta | |
echo "GITHUB_EVENT_NUMBER=${{ github.event.number }}" >> ${{ runner.temp }}/meta | |
- name: Upload metadata | |
uses: actions/upload-artifact@v3 | |
with: | |
name: meta | |
path: "${{ runner.temp }}/meta" |