Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarter committed Jan 28, 2025
1 parent cee0029 commit 2c824fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI_rosco-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ jobs:
- name: Add dependencies windows specific
if: contains( matrix.os, 'windows')
run: |
conda install -y compilers libpython
# conda install -y gfortran gcc libpython
# gfortran --version
conda install -y gfortran gcc libpython
gfortran --version
ls C:/Users/runneradmin/miniconda3/envs/test/Library/lib/*zmq*
- name: Add dependencies mac specific
if: contains( matrix.os, 'mac')
Expand All @@ -146,11 +146,11 @@ jobs:
- name: Debug
run: |
conda list
printenv
printenv | sort
- name: Conda Install ROSCO
run: |
python -m pip install -e .
python -m pip install -e . --no-build-isolation
- name: Generate Registry
run: |
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
# python_root = os.path.dirname( os.path.dirname( sysconfig.get_path('stdlib') ) )
# cmake_args += [f'-DCMAKE_PREFIX_PATH={python_root}']

if platform.system() == 'Windows':
if "FC" not in os.environ:
os.environ["FC"] = "gfortran"
#if platform.system() == 'Windows':
# if "FC" not in os.environ:
# os.environ["FC"] = "gfortran"

#if "gfortran" in os.environ["FC"].lower():
# cmake_args += ['-G', 'MinGW Makefiles']
Expand Down

0 comments on commit 2c824fd

Please sign in to comment.