We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 581f057 commit b837fd4Copy full SHA for b837fd4
1 file changed
.github/workflows/ctest.yml
@@ -15,8 +15,8 @@ jobs:
15
- name: Setup Qt # Generated with https://ddalcino.github.io/aqt-list-server/
16
uses: jurplel/install-qt-action@v3
17
with:
18
- aqtversion: '==3.1.*'
19
- host: "linux"
+ aqtversion: "==3.1.*"
+ host: "linux"
20
target: "desktop" # desktop libraries
21
tools: "tools_cmake" # Qt tools for cmake
22
@@ -26,8 +26,12 @@ jobs:
26
- name: Create build directory
27
run: mkdir build
28
29
+ - name: Test QT_ROOT_DIR
30
+ run: ls -la $QT_ROOT_DIR
31
+
32
+ # QT_ROOT_DIR set by install-qt-action
33
- name: Configure with CMake
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$HOME/Qt/$(ls $HOME/Qt)
34
+ run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$QT_ROOT_DIR
35
36
- name: Build
37
run: cmake --build build --target tests -- -j$(nproc)
0 commit comments