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
58166c88
Commit
58166c88
authored
Dec 03, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move a manylinux to the top.
parent
64ba1203
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
52 deletions
+52
-52
.github/workflows/ci.yml
.github/workflows/ci.yml
+52
-52
No files found.
.github/workflows/ci.yml
View file @
58166c88
...
...
@@ -75,6 +75,58 @@ env:
jobs
:
manylinux_arm64
:
runs-on
:
ubuntu-latest
# We use a regular Python matrix entry to share as much code as possible.
strategy
:
matrix
:
python-version
:
[
3.9
]
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v2
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Cache ~/.ccache
uses
:
actions/cache@v2
with
:
path
:
~/.ccache/
key
:
${{ runner.os }}-ccache_manylinux-${{ matrix.python-version }}
-
name
:
Get pip cache dir
id
:
pip-cache
run
:
|
echo "::set-output name=dir::$(pip cache dir)"
-
name
:
pip cache
uses
:
actions/cache@v2
with
:
path
:
${{ steps.pip-cache.outputs.dir }}
key
:
${{ runner.os }}-pip_aarch64-${{ matrix.python-version }}
restore-keys
:
|
${{ runner.os }}-pip-
-
name
:
Update pip
run
:
pip install -U pip
-
name
:
Enable emulation
run
:
|
docker run --rm --privileged hypriot/qemu-register
-
name
:
Build and test gevent
# Skip the bulk of the tests, running them emulated on arm takes
# forever
env
:
DOCKER_IMAGE
:
quay.io/pypa/manylinux2014_aarch64
GEVENTTEST_SKIP_ALL
:
1
run
:
scripts/releases/make-manylinux
-
name
:
Upload gevent wheels
uses
:
actions/upload-artifact@v2
with
:
path
:
wheelhouse/*whl
name
:
manylinux_aarch64_wheels.zip
-
name
:
Restore pip cache permissions
run
:
sudo chown -R $(whoami) ${{ steps.pip-cache.outputs.dir }}
test
:
runs-on
:
${{ matrix.os }}
strategy
:
...
...
@@ -442,58 +494,6 @@ jobs:
-
name
:
Restore pip cache permissions
run
:
sudo chown -R $(whoami) ${{ steps.pip-cache.outputs.dir }}
manylinux_arm64
:
runs-on
:
ubuntu-latest
# We use a regular Python matrix entry to share as much code as possible.
strategy
:
matrix
:
python-version
:
[
3.9
]
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v2
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Cache ~/.ccache
uses
:
actions/cache@v2
with
:
path
:
~/.ccache/
key
:
${{ runner.os }}-ccache_manylinux-${{ matrix.python-version }}
-
name
:
Get pip cache dir
id
:
pip-cache
run
:
|
echo "::set-output name=dir::$(pip cache dir)"
-
name
:
pip cache
uses
:
actions/cache@v2
with
:
path
:
${{ steps.pip-cache.outputs.dir }}
key
:
${{ runner.os }}-pip_aarch64-${{ matrix.python-version }}
restore-keys
:
|
${{ runner.os }}-pip-
-
name
:
Update pip
run
:
pip install -U pip
-
name
:
Enable emulation
run
:
|
docker run --rm --privileged hypriot/qemu-register
-
name
:
Build and test gevent
# Skip the bulk of the tests, running them emulated on arm takes
# forever
env
:
DOCKER_IMAGE
:
quay.io/pypa/manylinux2014_aarch64
GEVENTTEST_SKIP_ALL
:
1
run
:
scripts/releases/make-manylinux
-
name
:
Upload gevent wheels
uses
:
actions/upload-artifact@v2
with
:
path
:
wheelhouse/*whl
name
:
manylinux_aarch64_wheels.zip
-
name
:
Restore pip cache permissions
run
:
sudo chown -R $(whoami) ${{ steps.pip-cache.outputs.dir }}
# TODO:
# * Configure caching (XXX: Are these caches updated? The post step doesn't seem to do that.)
...
...
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