File tree 3 files changed +40
-10
lines changed
3 files changed +40
-10
lines changed Original file line number Diff line number Diff line change
1
+ # https://editorconfig.org/
2
+
3
+ root = true
4
+
5
+ [* ]
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+ indent_style = space
11
+ indent_size = 4
12
+
13
+ [* .json ]
14
+ indent_size = 4
15
+
16
+ [* .{yml,yaml} ]
17
+ indent_size = 2
18
+
19
+ [* .{bat,cmd,cmd.* } ]
20
+ end_of_line = crlf
21
+ indent_style = space
22
+ indent_size = 2
23
+
24
+ [* .{ps1,ps1.* } ]
25
+ end_of_line = crlf
26
+ indent_style = space
27
+ indent_size = 4
28
+
29
+ [* .{md,markdown} ]
30
+ indent_size = 2
Original file line number Diff line number Diff line change 32
32
else
33
33
echo "branches=[ '${{ github.base_ref }}' ]" >> "$GITHUB_OUTPUT"
34
34
fi
35
-
35
+
36
36
Ubuntu :
37
37
runs-on : opencv-ru-lin-riscv
38
38
needs :
41
41
fail-fast : false
42
42
max-parallel : 3
43
43
matrix :
44
- version :
44
+ version :
45
45
- ' 24.04'
46
46
- ' 22.04'
47
47
- ' 20.04'
57
57
- version : ' 20.04'
58
58
image : ' 20.04:20230413'
59
59
limited_api : true
60
-
60
+
61
61
defaults :
62
62
run :
63
63
shell : bash
@@ -79,12 +79,12 @@ jobs:
79
79
CCACHE_DIR : ' /opt/.ccache'
80
80
OPENCV_DOWNLOAD_PATH : ' /opt/binaries_cache'
81
81
CMAKE_OPT : >-
82
- -DBUILD_DOCS=ON
83
- -DBUILD_EXAMPLES=ON
84
- -DOPENCV_ENABLE_NONFREE=ON
85
- ${{ matrix.jpegxl && '-DWITH_JPEGXL=ON' }}
86
- ${{ matrix.avx2 && '-DCPU_BASELINE=AVX2'}}
87
- ${{ matrix.plugins && '-DVIDEOIO_PLUGIN_LIST=all -DHIGHGUI_PLUGIN_LIST=all' }}
82
+ -DBUILD_DOCS=ON
83
+ -DBUILD_EXAMPLES=ON
84
+ -DOPENCV_ENABLE_NONFREE=ON
85
+ ${{ matrix.jpegxl && '-DWITH_JPEGXL=ON' }}
86
+ ${{ matrix.avx2 && '-DCPU_BASELINE=AVX2'}}
87
+ ${{ matrix.plugins && '-DVIDEOIO_PLUGIN_LIST=all -DHIGHGUI_PLUGIN_LIST=all' }}
88
88
${{ matrix.limited_api && '-DPYTHON3_LIMITED_API=ON' }}
89
89
HOME : ${{ contains(matrix.image, '24.04') && '/home/ubuntu' || '/home/ci' }}
90
90
OPENCV_FOR_THREADS_NUM : 8
Original file line number Diff line number Diff line change 101
101
}
102
102
}
103
103
}
104
- }
104
+ }
You can’t perform that action at this time.
0 commit comments