Skip to content

Commit

Permalink
Paths issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Algiane committed Apr 9, 2024
1 parent e160386 commit 3fc36e3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/main-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ jobs:
# Download scotch only if used
if: matrix.scotch == 'on'
run: |
pwd
ls
git clone https://gitlab.inria.fr/scotch/scotch.git
cd scotch
git checkout v6.1.3
Expand Down Expand Up @@ -270,7 +272,7 @@ jobs:
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DMMG_PATTERN=${{ matrix.pattern }} \
-DUSE_SCOTCH=${{ matrix.scotch }} \
-DSCOTCH_DIR=scotch-install \
-DSCOTCH_DIR=../scotch-install \
-DUSE_VTK=${{ matrix.vtk }} \
-DMMG5_INT=${{ matrix.int }} \
-DBUILD_SHARED_LIBS=ON \
Expand All @@ -285,14 +287,14 @@ jobs:
- name: Test compilation without library linkage
run: |
cmake -S. -Bbuild_nolibs \
${{ env.C_FLG }} \
${{ env.CMAKE_C_FLG }} \
${{ env.FORT_FLG }} \
-DCI_CONTEXT=ON \
-DBUILD_TESTING=ON \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DMMG_PATTERN=${{ matrix.pattern }} \
-DUSE_SCOTCH=${{ matrix.scotch }} \
-DSCOTCH_DIR=scotch-install \
-DSCOTCH_DIR=../scotch-install \
-DUSE_VTK=${{ matrix.vtk }} \
-DMMG5_INT=${{ matrix.int }} \
-DLIBMMG_STATIC=OFF \
Expand All @@ -306,15 +308,15 @@ jobs:
- name: Configure Mmg with static libs (default behaviour)
run: |
cmake -S. -Bbuild \
${{ env.C_FLG }} \
${{ env.CMAKE_C_FLG }} \
${{ env.FORT_FLG }} \
-DCMAKE_INSTALL_PREFIX=mmg-install \
-DCI_CONTEXT=ON \
-DBUILD_TESTING=ON \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DMMG_PATTERN=${{ matrix.pattern }} \
-DUSE_SCOTCH=${{ matrix.scotch }} \
-DSCOTCH_DIR=scotch-install \
-DSCOTCH_DIR=../scotch-install \
-DUSE_VTK=${{ matrix.vtk }} \
-DMMG5_INT=${{ matrix.int }} \
-DTEST_LIBMMG=ON \
Expand Down

0 comments on commit 3fc36e3

Please sign in to comment.