Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bvt-appleclang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
bvt-appleclang:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: install meson
run: pipx install meson
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
run: build-cmake/benchmarks/msft_proxy_benchmarks --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake/drop/benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-appleclang
path: build-cmake/drop/
4 changes: 2 additions & 2 deletions .github/workflows/bvt-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
bvt-clang:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: install meson
run: pipx install meson
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
run: build-cmake/benchmarks/msft_proxy_benchmarks --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake/drop/benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-clang
path: build-cmake/drop/
4 changes: 2 additions & 2 deletions .github/workflows/bvt-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-24.04
container: gcc:15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: install cmake and meson
run: |
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
run: build-cmake/benchmarks/msft_proxy_benchmarks --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake/drop/benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-gcc
path: build-cmake/drop/
4 changes: 2 additions & 2 deletions .github/workflows/bvt-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
bvt-msvc:
runs-on: windows-2025
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: install meson
run: pipx install meson
Expand All @@ -31,7 +31,7 @@ jobs:
run: build-cmake\benchmarks\Release\msft_proxy_benchmarks.exe --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake\drop\benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-msvc
path: build-cmake/drop/
4 changes: 2 additions & 2 deletions .github/workflows/bvt-nvhpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
bvt-nvhpc:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: free disk space
uses: jlumbroso/free-disk-space@v1.3.1
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
run: build-cmake/benchmarks/msft_proxy_benchmarks --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake/drop/benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-nvhpc
path: build-cmake/drop/
4 changes: 2 additions & 2 deletions .github/workflows/bvt-oneapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
bvt-oneapi:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: install meson
run: pipx install meson
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
run: build-cmake/benchmarks/msft_proxy_benchmarks --benchmark_min_warmup_time=0.1 --benchmark_min_time=0.1s --benchmark_repetitions=30 --benchmark_enable_random_interleaving=true --benchmark_report_aggregates_only=true --benchmark_format=json > build-cmake/drop/benchmarking-results.json

- name: archive benchmarking results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: drop-oneapi
path: build-cmake/drop/
6 changes: 3 additions & 3 deletions .github/workflows/bvt-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
bvt-report:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: download all workflow run artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand All @@ -31,7 +31,7 @@ jobs:
tools/report_generator/build/report_generator tools/report_generator/report-config.json

- name: archive benchmarking report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmarking-report
path: benchmarking-report.md
6 changes: 3 additions & 3 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
bvt-mkdocs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"
architecture: "x64"
Expand All @@ -29,6 +29,6 @@ jobs:

- name: Upload site artifact
if: ${{ inputs.upload-artifacts }}
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: ./site
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:

steps:
- id: deploy
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading