mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-23 06:48:25 +00:00
Creating the build directory with mkdir since github's cmake doesn't
This commit is contained in:
@@ -12,7 +12,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build Makefile with CMake
|
||||
run: cmake -S . -B build
|
||||
run: mkdir -p build && cmake -S . -B build
|
||||
- name: Build with Makefile
|
||||
run: make -C build ComSquare
|
||||
- name: Archive production artifact
|
||||
|
||||
@@ -22,7 +22,7 @@ jobs:
|
||||
- name: Install Gcovr
|
||||
run: python -m pip install --upgrade pip gcovr
|
||||
- name: Build Makefile with CMake
|
||||
run: cmake -S . -B build
|
||||
run: mkdir -p build && cmake -S . -B build
|
||||
- name: Build with Makefile
|
||||
run: make -C build unit_tests
|
||||
- name: Execute tests
|
||||
|
||||
Reference in New Issue
Block a user