-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
77 lines (68 loc) · 1.24 KB
/
.gitlab-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
image: ubuntu:latest
before_script:
- apt update
- apt install -y simulavr make avr-libc gdb-avr
aes128-lowram:
only:
changes:
- code/aes128/lowram/*
script:
- |
cd code/aes128/lowram/
make stats
aes128-normal:
only:
changes:
- code/aes128/normal/*
script:
- |
cd code/aes128/normal/
make stats
groestl256-balanced:
only:
changes:
- code/groestl256/balanced/*
script:
- |
cd code/groestl256/balanced/
make stats
groestl256-highspeed:
only:
changes:
- code/groestl256/highspeed/*
script:
- |
cd code/groestl256/highspeed/
make stats
groestl256-lowram128:
only:
changes:
- code/groestl256/lowram128/*
script:
- |
cd code/groestl256/lowram128/
make stats
groestl256-lowram192a:
only:
changes:
- code/groestl256/lowram192a/*
script:
- |
cd code/groestl256/lowram192a/
make stats
groestl256-lowram192b:
only:
changes:
- code/groestl256/lowram192b/*
script:
- |
cd code/groestl256/lowram192b/
make stats
groestl256-lowram256:
only:
changes:
- code/groestl256/lowram256/*
script:
- |
cd code/groestl256/lowram256/
make stats