Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 62c9c071 authored by hhakim's avatar hhakim
Browse files

Fix pyfaust_test_code_coverage ci job that now needs to download data before proceeding.

parent 966ddaa9
No related branches found
No related tags found
No related merge requests found
Pipeline #834162 skipped
......@@ -229,6 +229,7 @@ pyfaust_test_code_coverage:
# built with --enable-loadable-sqlite-extensions (and sqlite-devel)
# but it is a need of coverave python package
# so we use py3.9 from conda
- cmake -P misc/download_unzip_faust_misc_data.cmake # tests need data
- conda create -n test_coverage_pyfaust python==3.9
- conda activate test_coverage_pyfaust
# install pyfaust with pip
......
......@@ -3,6 +3,9 @@ if(NOT EXISTS faust_misc_data.zip)
file(DOWNLOAD https://gitlab.inria.fr/faustgrp/gforge_files/-/raw/master/faust_misc_data-2023-07-11.zip faust_misc_data.zip SHOW_PROGRESS)
endif()
if(NOT EXISTS data)
if(NOT FAUST_MISC_DIR)
set(FAUST_MISC_DIR ./misc)
endif()
file(ARCHIVE_EXTRACT INPUT faust_misc_data.zip DESTINATION ${FAUST_MISC_DIR})
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment