diff options
author | Itay Grudev <itay+89bf5c@grudev.com> | 2020-01-03 17:02:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 17:02:37 +0000 |
commit | b25e62409be20071a4c9d1462bf0a12d977e9c07 (patch) | |
tree | 73071cfc6035c449461da15af644efe256724fd7 /.github/workflows | |
parent | GitHub Actions alternative cmake command (diff) | |
download | singleapplication-b25e62409be20071a4c9d1462bf0a12d977e9c07.tar.xz |
GitHub Actions Alternative build command
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-cmake.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index 374fd42..9df0211 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 --build . + run: cmake . - - name: make - run: make + - name: cmake build + run: cmake --build . - name: Build example - basic (cmake) - run: cmake --build . && make + run: cmake . && make working-directory: examples/basic/ - name: Build example - calculator (cmake) - run: cmake --build . && make + run: cmake . && make working-directory: examples/calculator/ - name: Build example - sending_arguments (cmake) - run: cmake --build . && make + run: cmake . && make working-directory: examples/sending_arguments/ |