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 0e27a80 commit 44d31cdCopy full SHA for 44d31cd
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+ workflow_dispatch:
7
+
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
16
+ - name: Install dependencies
17
+ run: sudo apt-get update && sudo apt-get install -y build-essential cmake
18
19
+ - run: cd examples/google_benchmark && mkdir build
20
21
+ - name: Build google_benchmark instrumentation
22
+ run: cd examples/google_benchmark/build && cmake -DCODSPEED_MODE=instrumentation .. && make -j
23
24
+ - name: Build google_benchmark walltime
25
+ run: cd examples/google_benchmark/build && cmake -DCODSPEED_MODE=walltime .. && make -j
0 commit comments