@@ -6,7 +6,7 @@ on: [push, pull_request]
6
6
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
7
7
jobs :
8
8
build_conda :
9
- name : Conda Build (${{ matrix.os }})
9
+ name : Build (${{ matrix.os }} Python ${{ matrix.python-version }})
10
10
runs-on : ${{ matrix.os }}
11
11
12
12
defaults :
@@ -50,10 +50,10 @@ jobs:
50
50
# run: |
51
51
# conda env update --file environment.yml
52
52
53
- # Install dependencies of WISDEM specific to linux/mac
54
- # - name: Add compilers
55
- # run: |
56
- # conda install compilers
53
+ # Install compilers
54
+ - name : Add compilers
55
+ run : |
56
+ conda install compilers
57
57
58
58
# Install dependencies of WISDEM specific to linux/mac
59
59
# - name: Add dependencies linux specific
@@ -63,24 +63,24 @@ jobs:
63
63
# conda init bash
64
64
65
65
# Install dependencies of WISDEM specific to windows
66
- - name : Add dependencies windows specific
67
- if : contains( matrix.os, 'windows')
68
- run : |
69
- conda install -y m2w64-toolchain libpython
66
+ # - name: Add dependencies windows specific
67
+ # if: contains( matrix.os, 'windows')
68
+ # run: |
69
+ # conda install -y m2w64-toolchain libpython
70
70
71
71
# Install
72
72
- name : Conda Install pyFrame3DD
73
73
run : |
74
74
python setup.py develop
75
75
76
- # Install
77
- - name : Library name
78
- run : |
79
- ls
80
- echo "BREAK"
81
- ls pyframe3dd
82
- echo "BREAK"
83
- ls meson_build/pyframe3dd
76
+ # Peek
77
+ # - name: Library name
78
+ # run: |
79
+ # ls
80
+ # echo "BREAK"
81
+ # ls pyframe3dd
82
+ # echo "BREAK"
83
+ # ls meson_build/pyframe3dd
84
84
85
85
# Run tests
86
86
- name : Conda Run pytest
0 commit comments