forth attempt to perform build
Main LMDBAL workfow / Compile (push) Successful in 32s Details

This commit is contained in:
Blue 2023-08-19 22:15:34 -03:00
parent 0d39a613c6
commit c36230b252
Signed by: blue
GPG Key ID: 9B203B252A63EE38
1 changed files with 4 additions and 2 deletions

View File

@ -11,8 +11,10 @@ jobs:
- name: Make a build directory
run: mkdir build
- name: Configure
run: cd build & cmake .. -D BUILD_TESTS=True -D BUILD_DOC=True -D BUILD_DOXYGEN_AWESOME=True -D QT_VERSION_MAJOR=5
working-directory: ./build
run: cmake .. -D BUILD_TESTS=True -D BUILD_DOC=True -D BUILD_DOXYGEN_AWESOME=True -D QT_VERSION_MAJOR=5
- name: Build
run: cd build & cmake --build .
working-directory: ./build
run: cmake --build .
- name: Status
run: echo "${{ job.status }}"