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
7f2ddebc
Commit
7f2ddebc
authored
Nov 23, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving env around.
parent
51af642f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
32 deletions
+31
-32
.github/workflows/ci.yml
.github/workflows/ci.yml
+31
-32
No files found.
.github/workflows/ci.yml
View file @
7f2ddebc
...
...
@@ -35,37 +35,6 @@ on: [push, pull_request]
# pull_request:
# branches: [ $default-branch ]
defaults
:
env
:
BUILD_RUNTIMES
:
$HOME/.runtimes
PYTHONHASHSEED
:
8675309
PYTHONUNBUFFERED
:
1
PYTHONDONTWRITEBYTECODE
:
1
PIP_UPGRADE_STRATEGY
:
eager
# Don't get warnings about Python 2 support being deprecated. We
# know. The env var works for pip 20.
PIP_NO_PYTHON_VERSION_WARNING
:
1
PIP_NO_WARN_SCRIPT_LOCATION
:
1
GEVENTSETUP_EV_VERIFY
:
1
# Disable some warnings produced by libev especially and also some Cython generated code.
# Note that changing the value of these variables invalidates configure caches
CFLAGS
:
"
-Ofast
-pipe
-Wno-strict-aliasing
-Wno-comment"
# # Uploading built wheels for releases.
# TWINE_PASSWORD is encrypted and stored directly in the
# travis repo settings.
TWINE_USERNAME
:
"
__token__"
###
# Part of caching; disabled for now.
#
# CC: "ccache gcc"
# CCACHE_NOCPP2: true
# CCACHE_SLOPPINESS: file_macro,time_macros,include_file_ctime,include_file_mtime
# CCACHE_NOHASHDIR: true
# BUILD_LIBS: $HOME/.libs
# CPPFLAGS: "-I$BUILD_LIBS/include -DEV_VERIFY: 1"
# LDFLAGS: "-L$BUILD_LIBS/lib"
# LD_LIBRARY_PATH: "$BUILD_LIBS/lib"
jobs
:
build
:
...
...
@@ -73,7 +42,37 @@ jobs:
strategy
:
matrix
:
python-version
:
[
2.7
,
pypy
,
pypy3
,
3.5
,
3.6
,
3.7
,
3.8
,
3.9
]
env
:
# XXX: Can't seem to set these globally. ``defaults.env`` is not
# a thing.
PYTHONHASHSEED
:
8675309
PYTHONUNBUFFERED
:
1
PYTHONDONTWRITEBYTECODE
:
1
PIP_UPGRADE_STRATEGY
:
eager
# Don't get warnings about Python 2 support being deprecated. We
# know. The env var works for pip 20.
PIP_NO_PYTHON_VERSION_WARNING
:
1
PIP_NO_WARN_SCRIPT_LOCATION
:
1
GEVENTSETUP_EV_VERIFY
:
1
# Disable some warnings produced by libev especially and also some Cython generated code.
# Note that changing the value of these variables invalidates configure caches
CFLAGS
:
"
-Ofast
-pipe
-Wno-strict-aliasing
-Wno-comment"
# # Uploading built wheels for releases.
# TWINE_PASSWORD is encrypted and stored directly in the
# travis repo settings.
TWINE_USERNAME
:
"
__token__"
###
# Part of caching; disabled for now.
#
# BUILD_RUNTIMES: $HOME/.runtimes
# CC: "ccache gcc"
# CCACHE_NOCPP2: true
# CCACHE_SLOPPINESS: file_macro,time_macros,include_file_ctime,include_file_mtime
# CCACHE_NOHASHDIR: true
# BUILD_LIBS: $HOME/.libs
# CPPFLAGS: "-I$BUILD_LIBS/include -DEV_VERIFY: 1"
# LDFLAGS: "-L$BUILD_LIBS/lib"
# LD_LIBRARY_PATH: "$BUILD_LIBS/lib"
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
...
...
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