GitHub Actions Alternative build command

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

View File

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