Skip to content

Commit

Permalink
Attempt to fix github actions configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Feb 16, 2024
1 parent 370e92d commit 75f3eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
env:
CC: gcc-${{matrix.cc_ver}}
CXX: g++-${{matrix.cc_ver}}
BUILD_TOOLS_QT_UNIT_TESTS: "${{ ${{matrix.cpp}} >= 17 && 'ON' || 'OFF' }}"
BUILD_TOOLS_QT_UNIT_TESTS: "${{ matrix.cpp >= 17 && 'ON' || 'OFF' }}"

- name: Build Target
working-directory: ${{runner.workspace}}/build
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
env:
CC: gcc-${{matrix.cc_ver}}
CXX: g++-${{matrix.cc_ver}}
BUILD_TOOLS_QT_UNIT_TESTS: "${{ ${{matrix.cpp}} >= 17 && 'ON' || 'OFF' }}"
BUILD_TOOLS_QT_UNIT_TESTS: "${{ matrix.cpp >= 17 && 'ON' || 'OFF' }}"

- name: Build Target
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit 75f3eec

Please sign in to comment.