third attempt to perform build
Main LMDBAL workfow / Compile (push) Failing after 3s Details

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

View File

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