Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
faust group
faust
Commits
7c7d58be
Commit
7c7d58be
authored
4 years ago
by
hhakim
Browse files
Options
Downloads
Patches
Plain Diff
Add a pip wheel install test for the windows version.
parent
12c6930a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+20
-3
20 additions, 3 deletions
.gitlab-ci.yml
with
20 additions
and
3 deletions
.gitlab-ci.yml
+
20
−
3
View file @
7c7d58be
...
@@ -499,15 +499,15 @@ test_macos_pkg_release:
...
@@ -499,15 +499,15 @@ test_macos_pkg_release:
.test_unix_purepy_pkg
:
.test_unix_purepy_pkg
:
stage
:
pkg_test
stage
:
pkg_test
script
:
script
:
-
find ./
-
$JOB_PYTHON -m venv test_pyfaust-$CI_COMMIT_TAG
-
python3 -m venv test_pyfaust-$CI_COMMIT_TAG
-
source test_pyfaust-$CI_COMMIT_TAG/bin/activate
-
source test_pyfaust-$CI_COMMIT_TAG/bin/activate
-
pip install build/wrapper/python/dist/pyfaust-$CI_COMMIT_TAG-*.whl
-
pip install build/wrapper/python/dist/pyfaust-$CI_COMMIT_TAG-*.whl
-
python3
-c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
-
$JOB_PYTHON
-c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
only
:
only
:
-
tags
-
tags
test_macos_purepy_release
:
test_macos_purepy_release
:
variables
:
{
JOB_PYTHON
:
'
python3'
}
extends
:
.test_unix_purepy_pkg
extends
:
.test_unix_purepy_pkg
needs
:
needs
:
-
job
:
pkg_macos_purepy_release
-
job
:
pkg_macos_purepy_release
...
@@ -517,9 +517,26 @@ test_macos_purepy_release:
...
@@ -517,9 +517,26 @@ test_macos_purepy_release:
-
macos_pkg_tester
-
macos_pkg_tester
test_nux_purepy_release
:
test_nux_purepy_release
:
variables
:
{
JOB_PYTHON
:
'
python3'
}
extends
:
.test_unix_purepy_pkg
extends
:
.test_unix_purepy_pkg
needs
:
needs
:
-
job
:
pkg_linux_purepy_release
-
job
:
pkg_linux_purepy_release
artifacts
:
true
artifacts
:
true
tags
:
tags
:
-
linux
-
linux
test_win_purepy_pkg
:
variables
:
{
JOB_PYTHON
:
'
python'
}
stage
:
pkg_test
script
:
-
'
%JOB_PYTHON%
-m
venv
test_pyfaust-%CI_COMMIT_TAG%'
-
'
call
test_pyfaust-%CI_COMMIT_TAG%\Scripts\activate'
-
pip install build/wrapper/python/dist/pyfaust-%CI_COMMIT_TAG%-*.whl
-
'
%JOB_PYTHON%
-c
"import
pyfaust;
print(pyfaust.version());
print(pyfaust.rand(5,5).toarray());"'
needs
:
-
job
:
pkg_win_purepy_release
artifacts
:
true
only
:
-
tags
tags
:
-
win10
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment