Creating the build directory with mkdir since github's cmake doesn't

This commit is contained in:
AnonymusRaccoon
2020-01-23 10:33:40 +01:00
parent e5af2bb6e8
commit c7f7c8a5fd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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