Skip to content

Commit d42dcf1

Browse files
authored
Merge pull request #64 from OptimalDesignLab/miso-dev
Rename from "Mach" to "MISO"
2 parents 6eb3bdf + 7998643 commit d42dcf1

237 files changed

Lines changed: 1624 additions & 1624 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ CheckOptions:
3838

3939
WarningsAsErrors: '*'
4040

41-
HeaderFilterRegex: 'mach/src/'
41+
HeaderFilterRegex: 'miso/src/'

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
matrix:
99
path:
1010
- 'src'
11-
- 'mach'
11+
- 'miso'
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Run clang-format style check for C/C++ programs.

.github/workflows/tests.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mach Tests
1+
name: MISO Tests
22

33
on: [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

.github/workflows/tidy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
buildflags: "-fno-openmp",
2727
}
2828
steps:
29-
- name: Clone Mach
29+
- name: Clone MISO
3030
uses: actions/checkout@v2
3131
with:
3232
fetch-depth: 2
@@ -276,13 +276,13 @@ jobs:
276276
message(FATAL_ERROR "Build failed")
277277
endif()
278278
279-
# - name: Clone Mach
279+
# - name: Clone MISO
280280
# uses: actions/checkout@v2
281281
# with:
282-
# # path: mach
282+
# # path: miso
283283
# fetch-depth: 2
284284

285-
- name: Create Mach Build Environment
285+
- name: Create MISO Build Environment
286286
run: cmake -E make_directory ${GITHUB_WORKSPACE}/build
287287

288288
- name: Generate Compile Commands

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Object, binary, and library files
1010
*.o
11-
/libmach.*
11+
/libmiso.*
1212
*.bin
1313
*.so
1414
*.a
@@ -42,11 +42,11 @@
4242
build/*
4343
lib/*
4444
include/*
45-
!build/mach_config.sh
45+
!build/miso_config.sh
4646

4747
# python wrapper related files
48-
/mach/__pycache__
49-
/mach.egg-info
48+
/miso/__pycache__
49+
/miso.egg-info
5050

5151
# smb meshes in the sandbox
5252
sandbox/*.smb

0 commit comments

Comments
 (0)