-
Notifications
You must be signed in to change notification settings - Fork 70
147 lines (106 loc) · 3.75 KB
/
compile_software.yaml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# A work-flow for compiling the Coyote software examples; for now, we are testing on Ubuntu 20.04
# This checks no extreme breaking changes were done in the examples & software, i.e. at least it compiles
name: Compile software
# Run on every push, makes dev and PR reviews easier
on: push
jobs:
compile-kmeans:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile kmeans
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=kmeans -DVERBOSITY=ON && make
compile-multi-threading:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile multi-threading
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=multithreading -DVERBOSITY=ON && make
compile-perf-fpga:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile perf FPGA
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=perf_fpga -DVERBOSITY=ON && make
compile-perf-local:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile perf local
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=perf_local -DVERBOSITY=ON && make
compile-reconfigure-shell:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile reconfigure shell
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=reconfigure_shell -DVERBOSITY=ON && make
compile-streaming-client:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile streaming client
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=streaming_client -DVERBOSITY=ON && make
compile-streaming-server:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile streaming server
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=streaming_server -DVERBOSITY=ON && make
compile-tcp-benchmark:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile TCP benchmark
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=tcp_iperf -DVERBOSITY=ON && make
compile-rdma-client:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile RDMA client
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=rdma_client -DVERBOSITY=ON && make
compile-rdma-server:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Environment set-up
run:
mkdir examples_sw/build && sudo apt-get install libboost-all-dev
- name: Compile RDMA server
run:
cd examples_sw/build && cmake ../ -DEXAMPLE=rdma_server -DVERBOSITY=ON && make