-
Notifications
You must be signed in to change notification settings - Fork 48
148 lines (140 loc) · 4.32 KB
/
ci.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
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
148
#
# Copyright 2021 Google LLC
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
#
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CRYPTOBENCH_DEPENDENCIES: python3 meson ninja-build
jobs:
test-python:
name: Test python code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pycryptodome
- name: Test python code
run: |
./python/run_tests check
test-cryptobench-x86_64:
name: Build and run benchmark tool (x86_64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES
- name: Build benchmark tool
run: |
cd benchmark
meson build/host --werror
ninja -C build/host
- name: Run benchmark tool
run: |
./benchmark/build/host/cipherbench --ntries=1
test-cryptobench-qemu-arm:
name: Build and run benchmark tool (qemu-arm)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES \
qemu-user binutils-arm-linux-gnueabi gcc-arm-linux-gnueabi
- name: Build benchmark tool
run: |
cd benchmark
./cross-tools/setup-build --build-type=qemu-arm -- --werror
ninja -C build/qemu-arm
- name: Run benchmark tool
run: |
qemu-arm -L /usr/arm-linux-gnueabi \
./benchmark/build/qemu-arm/cipherbench --ntries=1
test-cryptobench-qemu-aarch64:
name: Build and run benchmark tool (qemu-aarch64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES \
qemu-user binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu
- name: Build benchmark tool
run: |
cd benchmark
./cross-tools/setup-build --build-type=qemu-aarch64 -- --werror
ninja -C build/qemu-aarch64
- name: Run benchmark tool
run: |
qemu-aarch64 -L /usr/aarch64-linux-gnu \
./benchmark/build/qemu-aarch64/cipherbench --ntries=1
test-cryptobench-valgrind:
name: Build and run benchmark tool (x86_64, valgrind enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES valgrind
- name: Build benchmark tool
run: |
cd benchmark
meson build/host --werror
ninja -C build/host
- name: Run benchmark tool
run: |
valgrind --error-exitcode=100 --leak-check=full \
--errors-for-leak-kinds=all \
./benchmark/build/host/cipherbench --ntries=1
test-cryptobench-ubsan:
name: Build and run benchmark tool (x86_64, UBSAN enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES clang
- name: Build benchmark tool
run: |
cd benchmark
CC=clang CFLAGS="-fsanitize=undefined -fno-sanitize-recover=undefined" \
meson build/host --werror
ninja -C build/host
- name: Run benchmark tool
run: |
./benchmark/build/host/cipherbench --ntries=1
test-cryptobench-asan:
name: Build and run benchmark tool (x86_64, ASAN enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y $CRYPTOBENCH_DEPENDENCIES clang
- name: Build benchmark tool
run: |
cd benchmark
CC=clang CFLAGS="-fsanitize=address -fno-sanitize-recover=address" \
meson build/host --werror
ninja -C build/host
- name: Run benchmark tool
run: |
./benchmark/build/host/cipherbench --ntries=1