Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
6
Merge Requests
6
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
b6635825
Commit
b6635825
authored
Nov 26, 2019
by
Godefroid Chapelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[actions] workflow which uses pypa/setuptools master
to generate scripts
parent
00c1df7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
.github/workflows/setuptools-master.yml
.github/workflows/setuptools-master.yml
+48
-0
No files found.
.github/workflows/setuptools-master.yml
0 → 100644
View file @
b6635825
name
:
Test generating scripts with setuptools head
on
:
schedule
:
-
cron
:
'
0
0,12
*
*
*'
jobs
:
build
:
runs-on
:
ubuntu-latest
strategy
:
max-parallel
:
4
matrix
:
python-version
:
[
2.7
,
3.5
,
3.6
,
3.7
]
package
:
[
zest.releaser
,
pyspf
]
steps
:
-
uses
:
actions/checkout@v1
-
name
:
checkout setuptools
run
:
|
git clone https://github.com/pypa/setuptools.git
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v1
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Setup buildout virtualenv
run
:
|
make -f .github/workflows/Makefile sandbox/bin/buildout
-
name
:
Use setuptools develop
env
:
PYTHON_VERSION
:
${{matrix.python-version}}
run
:
|
./sandbox/bin/pip uninstall -y setuptools
cd setuptools
../sandbox/bin/python bootstrap.py
../sandbox/bin/python setup.py develop
ls ../sandbox/lib/python${PYTHON_VERSION}/site-packages
-
name
:
Run buildout
env
:
PACKAGE
:
${{matrix.package}}
run
:
|
sandbox/bin/buildout -v -c .github/workflows/scripts.cfg annotate buildout
sandbox/bin/buildout -c .github/workflows/scripts.cfg
-
name
:
Check eggs
run
:
|
ls -al sandbox/eggs
ls -al sandbox/downloads/dist
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