Skip to content

Commit

Permalink
update building test command
Browse files Browse the repository at this point in the history
  • Loading branch information
yumengch committed Dec 10, 2024
1 parent 5cc357e commit f2d3ad0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/conda_build_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
conda config --set anaconda_upload yes
conda-build -c conda-forge conda.recipe/
conda install -y -c conda-forge --use-local pypdaf
mpiexec -n 4 python -u example/main.py
cd example
mpiexec -n 4 python -u online/main.py
- name: Setup tmate session
if: ${{ failure() }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/conda_build_mac_intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
shell: bash -el {0}
run: |
conda install -y -c conda-forge --use-local pypdaf
mpiexec -n 4 python -u example/main.py
cd example
mpiexec -n 4 python -u online/main.py
- name: Setup tmate session
if: ${{ failure() }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/conda_build_mac_m1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
shell: bash -el {0}
run: |
conda install -y -c conda-forge --use-local pypdaf
mpiexec -n 4 python -u example/main.py
cd example
mpiexec -n 4 python -u online/main.py
- name: Setup tmate session
if: ${{ failure() }}
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[pyPDAF]
pwd = /home/runner/work/pyPDAF/pyPDAF
PDAF_dir = PDAF_V2.2.1
cmake_config_path = /home/runner/work/pyPDAF/pyPDAF/PDAFBuild/linux_gfortran_openmpi_pypdaf.cmake
pwd = /home/ia923171/Documents/pyPDAF
PDAF_dir = PDAF
cmake_config_path = /home/ia923171/Documents/pyPDAF/PDAFBuild/linux_gfortran_openmpi_pypdaf.cmake
condaBuild = False
# compilers used in fortran and C
# c_compiler can be: gcc, msvc, icc, clang
Expand All @@ -11,7 +11,7 @@ c_compiler = gcc
fortran_compiler = gfortran
# if MKL is used, give the path to the static MKL library
use_MKL= True
MKLROOT=
MKLROOT= /home/ia923171/miniconda3/envs/pypdaf-devel/lib
# if dynamic/shared liblapack and libblas library is used,
# give the library path and flags
LAPACK_PATH=
Expand Down

0 comments on commit f2d3ad0

Please sign in to comment.