diff options
author | Itay Grudev <itay+89bf5c@grudev.com> | 2020-01-03 11:07:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 11:07:03 +0000 |
commit | e70a0e7e3d00c958513e3c2d6b33525973f273ff (patch) | |
tree | 534f84d1deb1ddba60ebe94cbe725f26b2bd518d /.github/workflows/build-cmake.yml | |
parent | Renamed GitHub Action to Build CMake (diff) | |
download | singleapplication-e70a0e7e3d00c958513e3c2d6b33525973f273ff.tar.xz |
GitHub Actions alternative cmake command
Diffstat (limited to '.github/workflows/build-cmake.yml')
-rw-r--r-- | .github/workflows/build-cmake.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index 496a24c..374fd42 100644 --- a/.github/workflows/build-cmake.yml +++ b/.github/workflows/build-cmake.yml @@ -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/ |