Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tempsdb
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
tempsdb
Commits
f2365e5b
Commit
f2365e5b
authored
3 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
compile for release
parent
b7ce980d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+6
-2
6 additions, 2 deletions
.travis.yml
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
7 additions
and
3 deletions
.travis.yml
+
6
−
2
View file @
f2365e5b
...
@@ -38,9 +38,11 @@ jobs:
...
@@ -38,9 +38,11 @@ jobs:
-
stage
:
deploy
-
stage
:
deploy
python
:
"
3.8"
python
:
"
3.8"
before_script
:
before_script
:
-
apt-get update
-
apt-get install -y patchelf
-
pip install wheel twine doctor-wheel auditwheel snakehouse satella
-
pip install wheel twine doctor-wheel auditwheel snakehouse satella
script
:
script
:
-
python setup.py bdist_wheel sdist
-
RELEASE=1
python setup.py bdist_wheel sdist
-
cd dist
-
cd dist
-
doctor-wheel *.whl
-
doctor-wheel *.whl
-
auditwheel repair --plat manylinux2014_x86_64 *.whl
-
auditwheel repair --plat manylinux2014_x86_64 *.whl
...
@@ -48,9 +50,11 @@ jobs:
...
@@ -48,9 +50,11 @@ jobs:
-
stage
:
deploy
-
stage
:
deploy
python
:
"
3.9"
python
:
"
3.9"
before_script
:
before_script
:
-
apt-get update
-
apt-get install -y patchelf
-
pip install wheel twine doctor-wheel auditwheel snakehouse satella
-
pip install wheel twine doctor-wheel auditwheel snakehouse satella
script
:
script
:
-
python setup.py bdist_wheel
-
RELEASE=1
python setup.py bdist_wheel
-
cd dist
-
cd dist
-
doctor-wheel *.whl
-
doctor-wheel *.whl
-
auditwheel repair --plat manylinux2014_x86_64 *.whl
-
auditwheel repair --plat manylinux2014_x86_64 *.whl
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
f2365e5b
...
@@ -17,7 +17,7 @@ monkey_patch_parallel_compilation()
...
@@ -17,7 +17,7 @@ monkey_patch_parallel_compilation()
directives
=
{
'
language_level
'
:
'
3
'
}
directives
=
{
'
language_level
'
:
'
3
'
}
ext_kwargs
=
{}
ext_kwargs
=
{}
cythonize_kwargs
=
{}
cythonize_kwargs
=
{}
if
'
CI
'
in
os
.
environ
:
if
'
CI
'
in
os
.
environ
and
'
RELEASE
'
not
in
os
.
environ
:
ext_kwargs
[
'
define_macros
'
]
=
[(
"
CYTHON_TRACE_NOGIL
"
,
"
1
"
)]
ext_kwargs
[
'
define_macros
'
]
=
[(
"
CYTHON_TRACE_NOGIL
"
,
"
1
"
)]
directives
.
update
(
profile
=
True
,
linetrace
=
True
,
embedsignature
=
True
)
directives
.
update
(
profile
=
True
,
linetrace
=
True
,
embedsignature
=
True
)
cythonize_kwargs
[
'
gdb_debug
'
]
=
True
cythonize_kwargs
[
'
gdb_debug
'
]
=
True
...
...
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