-
Notifications
You must be signed in to change notification settings - Fork 193
46 lines (45 loc) · 1.18 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: ms
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
architectures: [x86, x64]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.7
architecture: ${{ matrix.architecture }}
- name: Install clang-cl
run: |
choco install llvm --yes
@("C:/Program Files/LLVM/bin") + (Get-Content $env:GITHUB_PATH) | Set-Content $env:GITHUB_PATH
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install scipy
pip install pythran-openblas pytest
- name: Setup
run: |
python -m pip install .
python -m pip install . 'pythran[test]'
- name: Testing minimal CLI
run: |
pythran --version
pythran --help
pythran-config -vvv
- name: Testing sequential
run: |
pytest pythran/tests/test_ndarray.py -v -x
pytest pythran/tests/test_scipy.py -v -x
pytest pythran/tests/test_base.py -v -x
pytest pythran/tests/test_advanced.py -v -x