Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 581b43d8 authored by hhakim's avatar hhakim
Browse files

Disable test_win_pkg_release because the call (or start) command blocks the...

Disable test_win_pkg_release because the call (or start) command blocks the job indefinitely. Renable the pypi_pub job.
parent 3476db61
Branches
Tags
No related merge requests found
...@@ -559,24 +559,24 @@ test_linux_pkg_release: ...@@ -559,24 +559,24 @@ test_linux_pkg_release:
- linux - linux
- matlab - matlab
# the matlab test is disabled because the Windows VMs are not able to access the license server (VPN issue) # the windows NSIS installer test is disabled because "call .exe" is hanging down indefinitely
#- matlab -nojvm -r "disp(matfaust.version());disp(full(matfaust.rand(5,5)));F=matfaust.rand(5,5);save(F, 'F.mat');exit;" .test_win_pkg_release:
# - python -c "from os.path import exists;from time import sleep; sleep(15); exit(0);if(exists('F.mat')) else exit(1)"
test_win_pkg_release:
stage: pkg_test stage: pkg_test
needs: needs:
- job: pkg_win_release - job: pkg_win_release
artifacts: true artifacts: true
script: script:
- dir - dir
- start "" 'build\faust-%CI_COMMIT_TAG%-amd64.exe' /S - call 'build\faust-%CI_COMMIT_TAG%-amd64.exe' /S
- timeout 20 - timeout 20
- dir 'C:\Program Files\Faust\' - dir 'C:\Program Files\Faust\'
# the matlab test is disabled because the Windows VMs are not able to access the license server (VPN issue)
- matlab -nojvm -r "disp(matfaust.version());disp(full(matfaust.rand(5,5)));F=matfaust.rand(5,5);save(F, 'F.mat');exit;"
- python -c "from os.path import exists;from time import sleep; sleep(15); exit(0);if(exists('F.mat')) else exit(1)"
- python -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());" - python -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
- python -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'real')" - python -c "import pyfaust.tests; pyfaust.tests.run_tests('cpu', 'real')"
- cd "C:\Program Files\Faust" - cd "C:\Program Files\Faust"
- start "" 'uninstall.exe' /S - call 'uninstall.exe' /S
only: only:
- tags - tags
tags: tags:
...@@ -659,7 +659,7 @@ test_win_purepy_pkg_extra_pyver: ...@@ -659,7 +659,7 @@ test_win_purepy_pkg_extra_pyver:
- job: pkg_win_purepy_release_extra_pyver - job: pkg_win_purepy_release_extra_pyver
artifacts: true artifacts: true
.pypi_pub: pypi_pub:
stage: pkg_pub stage: pkg_pub
script: script:
- python3 -m pip install --user twine - python3 -m pip install --user twine
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment