build(deps): Bump github.com/21-dot-dev/swift-plugin-tuist from 4.200… #85
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
| # .github/workflows/benchmark-main.yml | |
| # | |
| # Runs on every push to main and caches the baseline so PR workflows | |
| # can compare against it without re-running main benchmarks. | |
| name: Benchmark Baseline (main) | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| update-baseline: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: swift:6.3.0 | |
| steps: | |
| - name: Install dependencies | |
| run: apt-get update && apt-get install -y libjemalloc-dev | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run benchmarks | |
| working-directory: Projects | |
| run: | | |
| swift package --allow-writing-to-package-directory \ | |
| benchmark baseline update main --no-progress | |
| - name: Upload baseline artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: main-benchmark-baseline | |
| path: Projects/.benchmarkBaselines | |
| retention-days: 90 | |
| overwrite: true | |
| include-hidden-files: true |