File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 4040 name : test_results
4141 path : ${{runner.workspace}}/core/build-tests/test/test-results/**/*.json
4242
43+ windows-build :
44+ strategy :
45+ matrix :
46+ codspeed-mode : ["off", "walltime"]
47+ runs-on : windows-latest
48+ steps :
49+ - name : Checkout code
50+ uses : actions/checkout@v3
51+
52+ - name : Cache build
53+ uses : actions/cache@v3
54+ with :
55+ path : examples/google_benchmark_cmake/build
56+ key : ${{ runner.os }}-build-${{ matrix.codspeed-mode }}-${{ hashFiles('**/CMakeLists.txt') }}
57+
58+ - name : Create build directory
59+ run : mkdir examples\google_benchmark_cmake\build
60+ shell : pwsh
61+
62+ - name : Build benchmark example
63+ run : |
64+ cd examples\google_benchmark_cmake\build
65+ cmake -DCODSPEED_MODE=${{ matrix.codspeed-mode }} ..
66+ cmake --build . --config Release
67+ shell : pwsh
68+
4369 cmake-integration-tests :
4470 strategy :
4571 matrix :
You can’t perform that action at this time.
0 commit comments