Skip to content

Commit

Permalink
idem
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfougeron committed Jul 19, 2023
1 parent a2b57c4 commit e6fbc51
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/unit_tests_on_diverse_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ jobs:
$env:PATH += ';C:\Miniconda\envs\__setup_conda\Library\include\suitesparse'
$env:LIB += ';C:\Miniconda\envs\__setup_conda\Library\include\suitesparse'
Copy-Item -Path "C:\Miniconda\envs\__setup_conda\Library\include\suitesparse\SuiteSparseQR_C.h" -Destination "C:\Miniconda\envs\__setup_conda\Lib\site-packages\sparseqr\"
Copy-Item -Path "D:\a\choreo\sparseqr_gen.py" -Destination "C:\Miniconda\envs\__setup_conda\Lib\site-packages\sparseqr\"
cd "D:\a\choreo\"
dir
cd "D:\a\choreo\choreo"
dir
Copy-Item -Path "D:\a\choreo\choreo\sparseqr_gen.py" -Destination "C:\Miniconda\envs\__setup_conda\Lib\site-packages\sparseqr\"
cd "C:\Miniconda\envs\__setup_conda\Lib\site-packages\sparseqr\"
dir
#
Expand All @@ -65,9 +69,9 @@ jobs:
run: |
conda install -c conda-forge -y suitesparse clang plantuml openmp
#
# - name: Install run setup.py
# run: |
# python setup.py build_ext --inplace
- name: Install run setup.py
run: |
python setup.py build_ext --inplace
- name: Install python build dependencies
run: |
pip install --upgrade pip
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@

raise ValueError(f"Unsupported platform: {platform.system()}")


print("bbb")
pritn(os.environ['CC'])
pritn(os.environ['LDSHARED'])


cython_filenames = [ ext_name.replace('.','/') + src_ext for ext_name in cython_extnames]

define_macros = [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]
Expand Down

0 comments on commit e6fbc51

Please sign in to comment.