1- name : Mach Tests
1+ name : MISO Tests
22
33on : [push]
44
@@ -282,15 +282,15 @@ jobs:
282282 message(FATAL_ERROR "Build failed")
283283 endif()
284284
285- - name : Clone Mach
285+ - name : Clone MISO
286286 uses : actions/checkout@v2
287287 with :
288- path : mach
288+ path : miso
289289
290- - name : Create Mach Build Environment
291- run : cmake -E make_directory ${GITHUB_WORKSPACE}/mach /build
290+ - name : Create MISO Build Environment
291+ run : cmake -E make_directory ${GITHUB_WORKSPACE}/miso /build
292292
293- - name : Configure Mach
293+ - name : Configure MISO
294294 shell : cmake -P {0}
295295 run : |
296296 set(ENV{CC} ${{ matrix.config.cc }})
@@ -301,8 +301,8 @@ jobs:
301301
302302 execute_process(
303303 COMMAND cmake
304- -S mach
305- -B mach /build
304+ -S miso
305+ -B miso /build
306306 -D CMAKE_BUILD_TYPE=$ENV{BUILD_TYPE}
307307 -G Ninja
308308 -D CMAKE_MAKE_PROGRAM=ninja
@@ -319,7 +319,7 @@ jobs:
319319 message(FATAL_ERROR "Bad exit status")
320320 endif()
321321
322- - name : Build Mach
322+ - name : Build MISO
323323 shell : cmake -P {0}
324324 run : |
325325 set(ENV{NINJA_STATUS} "[%f/%t %o/sec] ")
@@ -338,7 +338,7 @@ jobs:
338338 # execute_process(COMMAND ccache -z)
339339
340340 execute_process(
341- COMMAND cmake --build mach /build
341+ COMMAND cmake --build miso /build
342342 RESULT_VARIABLE result
343343 OUTPUT_VARIABLE output
344344 ERROR_VARIABLE output
@@ -351,7 +351,7 @@ jobs:
351351 message(FATAL_ERROR "Build failed")
352352 endif()
353353
354- - name : Build Mach Tests
354+ - name : Build MISO Tests
355355 shell : cmake -P {0}
356356 run : |
357357 set(ENV{NINJA_STATUS} "[%f/%t %o/sec] ")
@@ -370,7 +370,7 @@ jobs:
370370 # execute_process(COMMAND ccache -z)
371371
372372 execute_process(
373- COMMAND cmake --build mach /build --target build_tests
373+ COMMAND cmake --build miso /build --target build_tests
374374 RESULT_VARIABLE result
375375 OUTPUT_VARIABLE output
376376 ERROR_VARIABLE output
@@ -383,8 +383,8 @@ jobs:
383383 message(FATAL_ERROR "Build failed")
384384 endif()
385385
386- - name : Test Mach
387- working-directory : mach /build
386+ - name : Test MISO
387+ working-directory : miso /build
388388 shell : bash
389389 run : ctest --output-on-failure
390390
0 commit comments