Skip to content

Commit

Permalink
Fix missing parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
Algiane committed Apr 12, 2024
1 parent 90ac756 commit fc017a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
- name: Test compilation with shared libs linkage
run: |
cmake -SParMmg -Bbuild_shared -DCI_DIR=~/testparmmg \
-DCMAKE_C_FLAGS=${{ env.C_FLG_PROF }} \
-DCMAKE_C_FLAGS="${{ env.C_FLG_PROF }}" \
${{ env.FORT_FLG }} \
-DBUILD_TESTING=ON \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
Expand All @@ -203,7 +203,7 @@ jobs:
- name: Configure Mmg with static libs (default behaviour)
run: |
cmake -SParMmg -Bbuild -DCI_DIR=~/testparmmg\
-DCMAKE_C_FLAGS=${{ env.C_FLG_PROF }} \
-DCMAKE_C_FLAGS="${{ env.C_FLG_PROF }}" \
${{ env.FORT_FLG }} \
-DBUILD_TESTING=ON \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
Expand Down

0 comments on commit fc017a1

Please sign in to comment.