Skip to content

Commit 5f15a88

Browse files
committed
Added default pipeline with Ubuntu 24.04.
1 parent c1e8e45 commit 5f15a88

File tree

1 file changed

+332
-0
lines changed

1 file changed

+332
-0
lines changed

.github/workflows/OCV-PR-4.x-U24.yaml

Lines changed: 332 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,332 @@
1+
name: OCV PR:4.x U24
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/OCV-PR-4.x-U24.yaml'
9+
workflow_call:
10+
11+
concurrency:
12+
group: OCV-PR-4.x-U24-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
env:
16+
EXTRA_CMAKE_OPTIONS: '-DBUILD_DOCS=ON -DPYTHON_DEFAULT_EXECUTABLE=/usr/bin/python3 -DOPENCV_DOWNLOAD_PATH=/home/ci/binaries_cache -DBUILD_EXAMPLES=ON -DOPENCV_ENABLE_NONFREE=ON'
17+
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
18+
PR_AUTHOR_FORK: ${{ github.event.pull_request.head.repo.full_name }}
19+
SOURCE_BRANCH_NAME: ${{ github.head_ref }}
20+
TARGET_BRANCH_NAME: ${{ github.base_ref }}
21+
ANT_HOME: '/usr/share/ant'
22+
GIT_CACHE_DOCKER: '/home/ci/git_cache'
23+
PYTHONPATH: /home/ci/build/python_loader:$PYTHONPATH
24+
OPENCV_TEST_DATA_PATH: '/home/ci/opencv_extra/testdata'
25+
OPENCV_TEST_REQUIRE_DATA: 1
26+
OPENCV_DOCKER_WORKDIR: '/home/ci/opencv'
27+
DNN_MODELS: '/home/ci/dnn-models'
28+
PARALLEL_JOBS: 8
29+
30+
jobs:
31+
BuildAndTest:
32+
runs-on: opencv-cn-lin-x86-64
33+
defaults:
34+
run:
35+
shell: bash
36+
container:
37+
image: quay.io/opencv-ci/opencv-ubuntu-24.04:20240424
38+
volumes:
39+
- /home/opencv-cn/git_cache:/home/ci/git_cache
40+
- /home/opencv-cn/ci_cache/opencv:/home/ci/.ccache
41+
- /home/opencv-cn/binaries_cache:/home/ci/binaries_cache
42+
- /home/opencv-cn/dnn-models:/home/ci/dnn-models
43+
steps:
44+
- name: Brief system information
45+
timeout-minutes: 60
46+
run: bash ${{ env.GIT_CACHE_DOCKER }}/print_system_information.sh
47+
- name: Define proper HOME path
48+
timeout-minutes: 60
49+
run: echo "HOME=/home/ci" >> $GITHUB_ENV
50+
- name: Setup infra environment
51+
timeout-minutes: 60
52+
if: ${{ github.event.repository.name == 'ci-gha-workflow' }}
53+
run: |
54+
echo "TARGET_BRANCH_NAME=4.x" >> $GITHUB_ENV
55+
- name: Setup test environment
56+
if: ${{ github.event.repository.name != 'ci-gha-workflow' }}
57+
run: |
58+
echo "EXTRA_GTEST_OPTIONS=--skip_unstable=1" >> $GITHUB_ENV
59+
- name: PR info
60+
timeout-minutes: 60
61+
run: |
62+
echo "PR Author: ${{ env.PR_AUTHOR }}"
63+
echo "PR Author fork: ${{ env.PR_AUTHOR_FORK }}"
64+
echo "Source branch name: ${{ env.SOURCE_BRANCH_NAME }}"
65+
echo "Target branch name: ${{ env.TARGET_BRANCH_NAME }}"
66+
- name: Clean
67+
timeout-minutes: 60
68+
run: find ${{ env.OPENCV_DOCKER_WORKDIR }} -mindepth 1 -delete
69+
- name: Fetch opencv
70+
timeout-minutes: 60
71+
run: git clone --branch ${{ env.TARGET_BRANCH_NAME }} --reference ${{ env.GIT_CACHE_DOCKER }}/opencv.git https://github.com/opencv/opencv.git ${{ env.OPENCV_DOCKER_WORKDIR }}
72+
- name: Merge opencv with ${{ env.SOURCE_BRANCH_NAME }} branch
73+
timeout-minutes: 60
74+
if: ${{ github.event.repository.name != 'ci-gha-workflow' }}
75+
run: |
76+
cd ${{ env.OPENCV_DOCKER_WORKDIR }}
77+
git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
78+
- name: Clone opencv_extra
79+
timeout-minutes: 60
80+
run: git clone --single-branch --branch ${{ env.TARGET_BRANCH_NAME }} --reference ${{ env.GIT_CACHE_DOCKER }}/opencv_extra.git https://github.com/opencv/opencv_extra.git $HOME/opencv_extra
81+
- name: Merge opencv_extra with ${{ env.SOURCE_BRANCH_NAME }} branch
82+
timeout-minutes: 60
83+
if: ${{ github.event.repository.name != 'ci-gha-workflow' }}
84+
run: |
85+
OPENCV_EXTRA_FORK=$(git ls-remote --heads "https://github.com/${{ env.PR_AUTHOR }}/opencv_extra" "${{ env.SOURCE_BRANCH_NAME }}") || true
86+
if [[ ! -z "$OPENCV_EXTRA_FORK" ]]; then
87+
echo "Merge opencv_extra with ${{ env.SOURCE_BRANCH_NAME }} branch"
88+
cd $HOME/opencv_extra
89+
git pull -v "https://github.com/${{ env.PR_AUTHOR }}/opencv_extra" "${{ env.SOURCE_BRANCH_NAME }}"
90+
else
91+
echo "No merge since ${{ env.PR_AUTHOR }}/opencv_extra does not have branch ${{ env.SOURCE_BRANCH_NAME }}"
92+
fi
93+
- name: Extra DNN models update
94+
timeout-minutes: 60
95+
run: |
96+
DOWNLOAD_MODELS_FILE='download_models.py'
97+
LATEST_SAVED_HASH=$(cat ${{ env.DNN_MODELS }}/dnn/latest-hash-${{ env.TARGET_BRANCH_NAME }}.txt)
98+
LATEST_HASH=$(sha256sum $HOME/opencv_extra/testdata/dnn/$DOWNLOAD_MODELS_FILE | awk '{print $1}')
99+
if [[ $LATEST_HASH == $LATEST_SAVED_HASH ]]; then
100+
echo "DNN models are up to date"
101+
echo "OPENCV_DNN_TEST_DATA_PATH=${{ env.DNN_MODELS }}" >> $GITHUB_ENV
102+
else
103+
echo "Updating DNN models list"
104+
echo "OPENCV_DNN_TEST_DATA_PATH=/home/ci/new-dnn-models" >> $GITHUB_ENV && OPENCV_DNN_TEST_DATA_PATH='/home/ci/new-dnn-models'
105+
mkdir -p "$OPENCV_DNN_TEST_DATA_PATH"
106+
rsync -a --exclude=$DOWNLOAD_MODELS_FILE ${{ env.DNN_MODELS }}/* $OPENCV_DNN_TEST_DATA_PATH
107+
cp $HOME/opencv_extra/testdata/dnn/download_models.py $OPENCV_DNN_TEST_DATA_PATH/dnn
108+
cd $OPENCV_DNN_TEST_DATA_PATH/dnn && python3 download_models.py
109+
fi
110+
- name: Configure OpenCV
111+
timeout-minutes: 60
112+
run: |
113+
cd $HOME/build
114+
cmake -G Ninja ${{ env.EXTRA_CMAKE_OPTIONS }} ${{ env.OPENCV_DOCKER_WORKDIR }}
115+
- name: Build OpenCV
116+
timeout-minutes: 60
117+
id: build-opencv
118+
run: |
119+
cd $HOME/build
120+
ninja -j ${{ env.PARALLEL_JOBS }} | tee $HOME/build/build-log.txt
121+
- name: Warnings check
122+
timeout-minutes: 60
123+
run: cd $HOME/build && python3 $HOME/scripts/warnings-handling.py
124+
- name: Accuracy:calib3d
125+
timeout-minutes: 60
126+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
127+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_calib3d --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
128+
- name: Accuracy:core
129+
timeout-minutes: 60
130+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
131+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_core --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
132+
- name: Accuracy:dnn
133+
timeout-minutes: 60
134+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
135+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_dnn --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
136+
- name: Accuracy:features2d
137+
timeout-minutes: 60
138+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
139+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_features2d --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
140+
- name: Accuracy:flann
141+
timeout-minutes: 60
142+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
143+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_flann --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
144+
- name: Accuracy:gapi
145+
timeout-minutes: 60
146+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
147+
# G-API bug with GCC 11+: https://github.com/opencv/opencv/issues/19678
148+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_gapi --gtest_filter='-AsyncAPICancelation/cancel/*' --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
149+
- name: Accuracy:highgui
150+
timeout-minutes: 60
151+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
152+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_highgui --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
153+
- name: Accuracy:imgcodecs
154+
timeout-minutes: 60
155+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
156+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_imgcodecs --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
157+
- name: Accuracy:imgproc
158+
timeout-minutes: 60
159+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
160+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_imgproc --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
161+
- name: Accuracy:ml
162+
timeout-minutes: 60
163+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
164+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_ml --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
165+
- name: Accuracy:objdetect
166+
timeout-minutes: 60
167+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
168+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_objdetect --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
169+
- name: Accuracy:photo
170+
timeout-minutes: 60
171+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
172+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_photo --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
173+
- name: Accuracy:stitching
174+
timeout-minutes: 60
175+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
176+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_stitching --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
177+
- name: Accuracy:video
178+
timeout-minutes: 60
179+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
180+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_video --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
181+
- name: Accuracy:videoio
182+
timeout-minutes: 60
183+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
184+
run: cd $HOME/build && xvfb-run -a bin/opencv_test_videoio --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
185+
- name: Performance:calib3d
186+
timeout-minutes: 60
187+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
188+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_calib3d --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
189+
- name: Performance:core
190+
timeout-minutes: 60
191+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
192+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_core --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
193+
- name: Performance:dnn
194+
timeout-minutes: 60
195+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
196+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_dnn --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
197+
- name: Performance:features2d
198+
timeout-minutes: 60
199+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
200+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_features2d --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
201+
- name: Performance:gapi
202+
timeout-minutes: 60
203+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
204+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_gapi --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
205+
- name: Performance:imgcodecs
206+
timeout-minutes: 60
207+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
208+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_imgcodecs --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
209+
- name: Performance:imgproc
210+
timeout-minutes: 60
211+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
212+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_imgproc --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
213+
- name: Performance:objdetect
214+
timeout-minutes: 60
215+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
216+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_objdetect --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
217+
- name: Performance:photo
218+
timeout-minutes: 60
219+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
220+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_photo --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
221+
- name: Performance:stitching
222+
timeout-minutes: 60
223+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
224+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_stitching --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
225+
- name: Performance:video
226+
timeout-minutes: 60
227+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
228+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_video --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
229+
- name: Performance:videoio
230+
timeout-minutes: 60
231+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
232+
run: cd $HOME/build && xvfb-run -a bin/opencv_perf_videoio --perf_impl=plain --perf_min_samples=1 --perf_force_samples=1 --perf_verify_sanity --skip_unstable=1 --perf_threads=${{ env.PARALLEL_JOBS }}
233+
- name: Python3 Bindings
234+
timeout-minutes: 60
235+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
236+
run: |
237+
cd $HOME/build
238+
python3 $HOME/opencv/modules/python/test/test.py --repo $HOME/opencv -v
239+
- name: Python3 Apps
240+
timeout-minutes: 60
241+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
242+
run: |
243+
cd $HOME/build
244+
if [ -f "$HOME/opencv/apps/python_app_test.py" ]; then
245+
python3 "$HOME/opencv/apps/python_app_test.py" --repo $HOME/opencv -v
246+
fi
247+
- name: Java
248+
timeout-minutes: 60
249+
id: java-test
250+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
251+
run: cd $HOME/build && xvfb-run -a python3 ${{ env.OPENCV_DOCKER_WORKDIR }}/modules/ts/misc/run.py . -a -t java
252+
- name: Save Unit Test Results
253+
timeout-minutes: 60
254+
uses: actions/upload-artifact@v3
255+
if: ${{ always() && steps.java-test.outcome == 'success' && steps.build-opencv.outcome == 'success' }}
256+
with:
257+
name: junit-html-ubuntu24-x86-64
258+
path: /home/ci/build/java_test/testResults/junit-noframes.html
259+
- name: Pylint
260+
timeout-minutes: 60
261+
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
262+
run: cd $HOME/build && cmake --build . --config release --target check_pylint -- -j4
263+
264+
BuildContrib:
265+
runs-on: opencv-cn-lin-x86-64
266+
defaults:
267+
run:
268+
shell: bash
269+
container:
270+
image: quay.io/opencv-ci/opencv-ubuntu-24.04:20240424
271+
volumes:
272+
- /home/opencv-cn/git_cache:/home/ci/git_cache
273+
- /home/opencv-cn/ci_cache/opencv:/home/ci/.ccache
274+
- /home/opencv-cn/binaries_cache:/home/ci/binaries_cache
275+
steps:
276+
- name: Brief system information
277+
timeout-minutes: 60
278+
run: bash ${{ env.GIT_CACHE_DOCKER }}/print_system_information.sh
279+
- name: Define proper HOME path
280+
timeout-minutes: 60
281+
run: echo "HOME=/home/ci" >> $GITHUB_ENV
282+
- name: Setup infra environment
283+
timeout-minutes: 60
284+
if: ${{ github.event.repository.name == 'ci-gha-workflow' }}
285+
run: echo "TARGET_BRANCH_NAME=4.x" >> $GITHUB_ENV
286+
- name: PR info
287+
timeout-minutes: 60
288+
run: |
289+
echo "PR Author: ${{ env.PR_AUTHOR }}"
290+
echo "PR Author fork: ${{ env.PR_AUTHOR_FORK }}"
291+
echo "Source branch name: ${{ env.SOURCE_BRANCH_NAME }}"
292+
echo "Target branch name: ${{ env.TARGET_BRANCH_NAME }}"
293+
- name: Clean
294+
timeout-minutes: 60
295+
run: find ${{ env.OPENCV_DOCKER_WORKDIR }} -mindepth 1 -delete
296+
- name: Fetch opencv
297+
timeout-minutes: 60
298+
run: git clone --branch ${{ env.TARGET_BRANCH_NAME }} --reference ${{ env.GIT_CACHE_DOCKER }}/opencv.git https://github.com/opencv/opencv.git ${{ env.OPENCV_DOCKER_WORKDIR }}
299+
- name: Merge opencv with a test branch
300+
timeout-minutes: 60
301+
if: ${{ github.event.repository.name != 'ci-gha-workflow' }}
302+
run: |
303+
cd ${{ env.OPENCV_DOCKER_WORKDIR }}
304+
git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
305+
- name: Clone opencv_contrib
306+
timeout-minutes: 60
307+
run: git clone --single-branch --branch ${{ env.TARGET_BRANCH_NAME }} --reference ${{ env.GIT_CACHE_DOCKER }}/opencv_contrib.git https://github.com/opencv/opencv_contrib.git $HOME/opencv_contrib
308+
- name: Merge opencv_contrib with ${{ env.SOURCE_BRANCH_NAME }} branch
309+
timeout-minutes: 60
310+
if: ${{ github.event.repository.name != 'ci-gha-workflow' }}
311+
run: |
312+
OPENCV_CONTRIB_FORK=$(git ls-remote --heads "https://github.com/${{ env.PR_AUTHOR }}/opencv_contrib" "${{ env.SOURCE_BRANCH_NAME }}") || true
313+
if [[ ! -z "$OPENCV_CONTRIB_FORK" ]]; then
314+
echo "Merge opencv_contrib with ${{ env.SOURCE_BRANCH_NAME }} branch"
315+
cd $HOME/opencv_contrib
316+
git pull -v "https://github.com/${{ env.PR_AUTHOR }}/opencv_contrib" "${{ env.SOURCE_BRANCH_NAME }}"
317+
else
318+
echo "No merge since ${{ env.PR_AUTHOR }}/opencv_contrib does not have branch ${{ env.SOURCE_BRANCH_NAME }}"
319+
fi
320+
- name: Configure OpenCV Contrib
321+
timeout-minutes: 60
322+
run: |
323+
cd $HOME/build
324+
cmake -G Ninja ${{ env.EXTRA_CMAKE_OPTIONS }} -DOPENCV_EXTRA_MODULES_PATH=$HOME/opencv_contrib/modules ${{ env.OPENCV_DOCKER_WORKDIR }}
325+
- name: Build OpenCV Contrib
326+
timeout-minutes: 60
327+
run: |
328+
cd $HOME/build
329+
ninja -j ${{ env.PARALLEL_JOBS }} | tee $HOME/build/build-log.txt
330+
- name: Warnings check
331+
timeout-minutes: 60
332+
run: cd $HOME/build && python3 $HOME/scripts/warnings-handling.py

0 commit comments

Comments
 (0)