Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 67339c3c authored by hhakim's avatar hhakim
Browse files

Update test_linux_pkg_release to test also the static version of the RPM package.

parent c6fef1aa
Branches
Tags 2.4.8
No related merge requests found
...@@ -553,12 +553,19 @@ test_linux_pkg_release: ...@@ -553,12 +553,19 @@ test_linux_pkg_release:
needs: needs:
- job: pkg_linux_release - job: pkg_linux_release
artifacts: true artifacts: true
- job: pkg_linux_release_static
artifacts: true
script: script:
- sudo rpm -i --nodeps build/faust-$CI_COMMIT_TAG-x86_64.rpm - sudo rpm -i --nodeps build/faust-$CI_COMMIT_TAG-x86_64.rpm
- matlab -nojvm -nodisplay -r "disp(matfaust.version());disp(full(matfaust.rand(5,5))); exit;" | tee /tmp/faust && grep $CI_COMMIT_TAG /tmp/faust - matlab -nojvm -nodisplay -r "disp(matfaust.version());disp(full(matfaust.rand(5,5))); exit;" | tee /tmp/faust && grep $CI_COMMIT_TAG /tmp/faust
- python$NIX_PY_VER -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());" - python$NIX_PY_VER -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
- python$NIX_PY_VER -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'real')" - python$NIX_PY_VER -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'real')"
- sudo rpm -e faust - sudo rpm -e faust
- sudo rpm -i --nodeps build/faust-$CI_COMMIT_TAG-static-x86_64.rpm
- matlab -nojvm -nodisplay -r "disp(matfaust.version());disp(full(matfaust.rand(5,5))); exit;" | tee /tmp/faust && grep $CI_COMMIT_TAG /tmp/faust
- python$NIX_PY_VER -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
- python$NIX_PY_VER -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'real')"
- sudo rpm -e faust
only: only:
- tags - tags
tags: tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment