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
8
Merge Requests
8
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
e83b36fd
Commit
e83b36fd
authored
May 15, 2020
by
Godefroid Chapelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: no windows CI
Solution: Add a GH workflow
parent
dcdc34d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
.github/workflows/tests-on-runners.yml
.github/workflows/tests-on-runners.yml
+35
-0
No files found.
.github/workflows/tests-on-runners.yml
0 → 100644
View file @
e83b36fd
name
:
Tests on Windows, MacOS, or Ubuntu runners
on
:
[
push
]
jobs
:
build
:
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
[
ubuntu-latest
,
macos-latest
,
windows-latest
]
python_version
:
[
2.7
,
3.5
,
3.6
,
3.7
,
3.8
]
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
crazy-max/ghaction-chocolatey@v1
if
:
matrix.python_version == '2.7' && matrix.os == 'windows-latest'
with
:
args
:
install vcpython27
-
name
:
Set up Python ${{ matrix.python_version }}
uses
:
actions/setup-python@v2
with
:
python_version
:
${{ matrix.python_version }}
-
name
:
Install dev environment
run
:
|
python dev.py
-
name
:
Run tests
env
:
TMPDIR
:
${{ env.HOME }}/AppData/Local/Temp
TMP
:
${{ env.HOME }}/AppData/Local/Temp
TEMP
:
${{ env.HOME }}/AppData/Local/Temp
run
:
|
echo $TMPDIR
bin/test -c -vvv
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