-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (80 loc) · 1.96 KB
/
.travis.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
{
"before_script": "set +e; unset -f cd; CFLAGS=\"$CFLAGS -O2 -Wall -Wextra -Wformat -Wformat-security\"; export CFLAGS; set -ex && rm -rf build* && mkdir build-mksh build-lksh && cp GNUmakefile build-mksh && cp GNUmakefile build-lksh && (cd build-mksh && sh ../Build.sh -M) && (cd build-lksh && bash ../Build.sh -L -M)",
"jobs": {
"include": [
{
"addons": {
"apt": {
"packages": [
"ed"
]
}
},
"arch": "amd64",
"compiler": "gcc",
"dist": "jammy",
"os": "linux"
},
{
"addons": {
"apt": {
"packages": [
"ed"
]
}
},
"arch": "arm64",
"compiler": "gcc",
"dist": "jammy",
"os": "linux"
},
{
"addons": {
"apt": {
"packages": [
"ed"
]
}
},
"arch": "ppc64le",
"compiler": "gcc",
"dist": "jammy",
"os": "linux"
},
{
"addons": {
"apt": {
"packages": [
"ed"
]
}
},
"arch": "s390x",
"compiler": "gcc",
"dist": "jammy",
"os": "linux"
},
{
"compiler": "clang",
"os": "osx",
"osx_image": "xcode7.3"
},
{
"compiler": "clang",
"os": "osx",
"osx_image": "xcode12.2"
},
{
"compiler": "clang",
"os": "osx",
"osx_image": "xcode13.4"
},
{
"compiler": "clang",
"os": "freebsd"
}
]
},
"language": "c",
"script": "set +e; unset -f cd; set -ex && for x in build-mksh build-lksh; do (cd $x && make -f GNUmakefile -j2 all && if script -qc true >/dev/null 2>&1; then script -qef -c 'make -f GNUmakefile regress'; else script -q typescript make -f GNUmakefile regress; fi && ./?ksh ../FAQ2HTML.sh); done"
}