ci: trigger node-compat on pr synchronize #4
This file contains hidden or 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: Bench Check Docker | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| ref: | ||
| description: Branch or tag to benchmark | ||
| required: true | ||
| default: fireactions-runners | ||
| runner_label: | ||
| description: Fireactions benchmark label | ||
| required: true | ||
| sweep_id: | ||
| description: Sweep identifier | ||
| required: true | ||
| rep: | ||
| description: Repetition number | ||
| required: true | ||
| bench_job_key: | ||
| description: Job selector | ||
| required: true | ||
| default: build | ||
| run-name: bench-check-docker | ${{ github.event.inputs.sweep_id }} | ${{ github.event.inputs.bench_job_key }} | ${{ github.event.inputs.runner_label }} | rep-${{ github.event.inputs.rep }} | ||
| concurrency: | ||
| group: bench-check-docker-${{ github.event.inputs.sweep_id }}-${{ github.event.inputs.runner_label }}-rep-${{ github.event.inputs.rep }} | ||
| cancel-in-progress: false | ||
| jobs: | ||
| build: | ||
| if: ${{ github.event.inputs.bench_job_key == 'build' }} | ||
| runs-on: [self-hosted, ${{ github.event.inputs.runner_label }}] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.event.inputs.ref }} | ||
| - uses: docker/setup-qemu-action@v2 | ||
| - uses: docker/setup-buildx-action@v2 | ||
| - run: docker build . | ||