ci: add a performance-compare-with-master job

This commit is contained in:
Delyan Angelov 2025-07-31 09:05:07 +03:00
parent 8eba7b2bf5
commit 10f737e1df
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -22,6 +22,24 @@ concurrency:
cancel-in-progress: true
jobs:
performance-compare-with-master:
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 30
- name: Environment info
run: echo "$VFLAGS $GITHUB_SHA $GITHUB_REF"
- name: Build local v
run: make && ./v symlink
- name: V version
run: ./v version
- name: Build the repeat tool
run: ./v cmd/tools/vrepeat.v
- name: Run compare_pr_to_master.v
run: ./v run .github/workflows/compare_pr_to_master.v
prevent-gpl-licenses:
runs-on: ubuntu-24.04
timeout-minutes: 15