Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
35400af1
Commit
35400af1
authored
Dec 03, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce output again.
parent
c3440753
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
scripts/releases/make-manylinux
scripts/releases/make-manylinux
+6
-4
No files found.
scripts/releases/make-manylinux
View file @
35400af1
...
...
@@ -47,7 +47,6 @@ export LIBS="-lrt"
if
[
-d
/gevent
-a
-d
/opt/python
]
;
then
# Running inside docker
set
-v
# Set a cache directory for pip. This was
# mounted to be the same as it is outside docker so it
# can be persisted.
...
...
@@ -56,7 +55,8 @@ if [ -d /gevent -a -d /opt/python ]; then
# is seen as owned by root in the container. But when the host is Linux
# the actual UIDs come through to the container, triggering
# pip to disable the cache when it detects that the owner doesn't match.
# The below is an attempt to fix that, taken frob bcrypt
# The below is an attempt to fix that, taken frob bcrypt. It seems to work on
# Github Actions.
if
[
-n
"
$GITHUB_ACTIONS
"
]
;
then
echo
Adjusting pip cache permissions
mkdir
-p
$XDG_CACHE_HOME
/pip
...
...
@@ -65,7 +65,9 @@ if [ -d /gevent -a -d /opt/python ]; then
ls
-ld
/cache
ls
-ld
/cache/pip
yum
-y
install
libffi-devel
# Some images/archs (specificaly 2014_aarch64 don't have ccache)
# Some images/archs (specificaly 2014_aarch64) don't have ccache;
# This also seems to have vanished for manylinux_2010 x64/64 after November 30
# 2020 when the OS went EOL and the package repos switched to the "vault"
yum
-y
install
ccache
||
export
CC
=
gcc
LDSHARED
=
"gcc -shared"
LDCXXSHARED
=
"gcc -shared"
# On Fedora Rawhide (F33)
# yum install python39 python3-devel gcc kernel-devel kernel-headers make diffutils file
...
...
@@ -75,7 +77,7 @@ if [ -d /gevent -a -d /opt/python ]; then
git clone /gevent gevent
cd
gevent
echo
Configuring cares
time
(
cd
deps/c-ares
&&
./configure
--disable-dependency-tracking
-C
)
time
(
cd
deps/c-ares
&&
./configure
--disable-dependency-tracking
-C
>
/dev/null
)
rm
-rf
/gevent/wheelhouse
mkdir
/gevent/wheelhouse
OPATH
=
"
$PATH
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment