Changeset: de8b9bdc445f for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/de8b9bdc445f
Modified Files:
        .github/workflows/linux.yml
Branch: default
Log Message:

inline the conditional variable usage


diffs (16 lines):

diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -102,11 +102,9 @@ jobs:
         if: runner.os == 'Windows'
 
       - name: ctest 
-        env:
-          CTEST: ${{ runner.os == 'Windows' && 'RUN_TESTS' || 'test' }}
         run: |
           cd build 
-          cmake --build . --target ${{ CTEST }}
+          cmake --build . --target ${{ runner.os == 'Windows' && 'RUN_TESTS' 
|| 'test' }}
 
       - name: mtest 
         run: |
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to