We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b267683 commit f812e7aCopy full SHA for f812e7a
.github/workflows/ci.yml
@@ -56,3 +56,25 @@ jobs:
56
cd examples/google_benchmark/build-walltime
57
cmake -DCODSPEED_MODE=walltime ..
58
make -j
59
+
60
+ build-no-codspeed:
61
+ runs-on: ubuntu-latest
62
63
+ steps:
64
+ - name: Checkout code
65
+ uses: actions/checkout@v3
66
67
+ - name: Cache build
68
+ uses: actions/cache@v3
69
+ with:
70
+ path: examples/google_benchmark/build-no-codspeed
71
+ key: ${{ runner.os }}-build-no-codspeed-${{ hashFiles('**/CMakeLists.txt', '**/examples/google_benchmark/**') }}
72
73
+ - name: Create build directory
74
+ run: mkdir -p examples/google_benchmark/build-no-codspeed
75
76
+ - name: Build benchmark example without codspeed
77
+ run: |
78
+ cd examples/google_benchmark/build-no-codspeed
79
+ cmake ..
80
+ make -j
0 commit comments