-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproj_build_command.json
More file actions
60 lines (60 loc) · 2.8 KB
/
Copy pathproj_build_command.json
File metadata and controls
60 lines (60 loc) · 2.8 KB
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
{
"vim_9_2_0015": {
"prepare_for_build": [
{"command": "make clean", "can_error": true}
],
"build_command": {"command": "make", "can_error": false}
},
"tmux_3_6_a": {
"prepare_for_build": [
{"command": "make clean", "can_error": true},
{"command": "sh autogen.sh", "can_error": false},
{"command": "./configure", "can_error": false}
],
"build_command": {"command": "make", "can_error": false}
},
"openssl_3_6_1": {
"prepare_for_build": [
{"command": "make clean", "can_error": true}
],
"build_command": {"command": "make -k", "can_error": false}
},
"redis-8_6-rc1": {
"prepare_for_build": [
{"command": "make clean", "can_error": true}
],
"build_command": {"command": "make", "can_error": false}
},
"FreeRDP_3_23_0": {
"prepare_for_build": [
{"command": "rm -rf build-codeql", "can_error": true},
{"command": "cmake -S . -B build-codeql -DCMAKE_BUILD_TYPE=Release -DWITH_CLIENT=OFF -DWITH_SERVER=OFF -DWITH_CHANNELS=OFF -DWITH_FFMPEG=OFF -DWITH_DSP_FFMPEG=OFF -DWITH_VIDEO_FFMPEG=OFF -DWITH_SWSCALE=OFF -DWITH_CAIRO=OFF -DWITH_OPUS=OFF -DWITH_CUPS=OFF -DWITH_PCSC=OFF -DWITH_FUSE=OFF", "can_error": false}
],
"build_command": {"command": "cmake --build build-codeql", "can_error": false}
},
"curl_rc-8_19_0-3": {
"prepare_for_build": [
{"command": "make clean", "can_error": true}
],
"build_command": {"command": "make", "can_error": false}
},
"FFmpeg_n_8_1_dev": {
"prepare_for_build": [
{"command": "make distclean", "can_error": true},
{"command": "./configure --disable-x86asm --disable-doc --disable-programs --disable-everything --enable-avcodec --enable-avformat --enable-avutil --enable-swscale --enable-swresample", "can_error": false}
],
"build_command": {"command": "make", "can_error": false}
},
"linux_v7_0-rc1": {
"prepare_for_build": [
{"command": "make CC=clang clean", "can_error": true},
{"command": "make CC=clang mrproper", "can_error": false},
{"command": "make CC=clang allmodconfig", "can_error": false},
{"command": "sed -i 's#^CONFIG_SYSTEM_TRUSTED_KEYS=.*#CONFIG_SYSTEM_TRUSTED_KEYS=\"\"#' .config", "can_error": false},
{"command": "sed -i 's#^CONFIG_SYSTEM_REVOCATION_KEYS=.*#CONFIG_SYSTEM_REVOCATION_KEYS=\"\"#' .config", "can_error": false},
{"command": "make CC=clang olddefconfig", "can_error": false},
{"command": "make CC=clang modules_prepare", "can_error": false}
],
"build_command": {"command": "make CC=clang drivers/staging/ -k", "can_error": false}
}
}