Skip to content

Commit 0b58ba0

Browse files
ci: add basic build job
1 parent 0e27a80 commit 0b58ba0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
- name: Build google_benchmark instrumentation
20+
run: |
21+
cd examples/google_benchmark
22+
mkdir build -D
23+
cd build
24+
cmake -DCODSPEED_MODE=instrumentation ..
25+
make
26+
27+
- name: Build google_benchmark walltime
28+
run:
29+
cd examples/google_benchmark
30+
mkdir build -D
31+
cd build
32+
cmake -DCODSPEED_MODE=walltime ..
33+
make

0 commit comments

Comments
 (0)