-
Notifications
You must be signed in to change notification settings - Fork 68
63 lines (53 loc) · 1.49 KB
/
example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: example
on:
push:
branches: ["main"]
jobs:
anyflow:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/anyflow && ./build.sh
depend-use-bzlmod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/depend-use-bzlmod && ./build.sh
depend-use-cmake-fetch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/depend-use-cmake-fetch && ./build.sh
depend-use-cmake-find:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install libabsl-dev
- run: sudo apt install libboost-all-dev
- run: sudo apt install libprotobuf-dev
- run: cd example/depend-use-cmake-find && ./build.sh
depend-use-cmake-subdir:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/depend-use-cmake-subdir && ./build.sh
depend-use-workspace:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/depend-use-workspace && ./build.sh
use-arena-with-brpc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/use-arena-with-brpc && ./build.sh
use-counter-with-bvar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/use-counter-with-bvar && ./build.sh
use-with-bthread:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd example/use-with-bthread && ./build.sh