aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItay Grudev <itay+89bf5c@grudev.com>2020-01-03 17:13:35 +0000
committerGitHub <noreply@github.com>2020-01-03 17:13:35 +0000
commitbb24abdf1df75528497fb013bbb720223fbd5e02 (patch)
tree0d3c661ce726293fdca836563b7067422e434c48
parentGitHub Actions Alternative build command (diff)
downloadsingleapplication-bb24abdf1df75528497fb013bbb720223fbd5e02.tar.xz
GitHub Actions - Applied same changes throughout the script
-rw-r--r--.github/workflows/build-cmake.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml
index 9df0211..8f47d10 100644
--- a/.github/workflows/build-cmake.yml
+++ b/.github/workflows/build-cmake.yml
@@ -27,13 +27,13 @@ jobs:
run: cmake --build .
- name: Build example - basic (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/basic/
- name: Build example - calculator (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/calculator/
- name: Build example - sending_arguments (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/sending_arguments/