GitHub Actions alternative cmake command

This commit is contained in:
Itay Grudev 2020-01-03 11:07:03 +00:00 committed by GitHub
parent 5222c01951
commit e70a0e7e3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,19 +21,19 @@ jobs:
version: ${{ matrix.qt_version }}
- name: cmake
run: cmake .
run: cmake --build .
- name: make
run: make
- name: Build example - basic (cmake)
run: cmake . && make
run: cmake --build . && make
working-directory: examples/basic/
- name: Build example - calculator (cmake)
run: cmake . && make
run: cmake --build . && make
working-directory: examples/calculator/
- name: Build example - sending_arguments (cmake)
run: cmake . && make
run: cmake --build . && make
working-directory: examples/sending_arguments/