Skip to content

Rename from "Mach" to "MISO" #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ CheckOptions:

WarningsAsErrors: '*'

HeaderFilterRegex: 'mach/src/'
HeaderFilterRegex: 'miso/src/'
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
matrix:
path:
- 'src'
- 'mach'
- 'miso'
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++ programs.
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Mach Tests
name: MISO Tests

on: [push]

Expand Down Expand Up @@ -282,15 +282,15 @@ jobs:
message(FATAL_ERROR "Build failed")
endif()

- name: Clone Mach
- name: Clone MISO
uses: actions/checkout@v2
with:
path: mach
path: miso

- name: Create Mach Build Environment
run: cmake -E make_directory ${GITHUB_WORKSPACE}/mach/build
- name: Create MISO Build Environment
run: cmake -E make_directory ${GITHUB_WORKSPACE}/miso/build

- name: Configure Mach
- name: Configure MISO
shell: cmake -P {0}
run: |
set(ENV{CC} ${{ matrix.config.cc }})
Expand All @@ -301,8 +301,8 @@ jobs:

execute_process(
COMMAND cmake
-S mach
-B mach/build
-S miso
-B miso/build
-D CMAKE_BUILD_TYPE=$ENV{BUILD_TYPE}
-G Ninja
-D CMAKE_MAKE_PROGRAM=ninja
Expand All @@ -319,7 +319,7 @@ jobs:
message(FATAL_ERROR "Bad exit status")
endif()

- name: Build Mach
- name: Build MISO
shell: cmake -P {0}
run: |
set(ENV{NINJA_STATUS} "[%f/%t %o/sec] ")
Expand All @@ -338,7 +338,7 @@ jobs:
# execute_process(COMMAND ccache -z)

execute_process(
COMMAND cmake --build mach/build
COMMAND cmake --build miso/build
RESULT_VARIABLE result
OUTPUT_VARIABLE output
ERROR_VARIABLE output
Expand All @@ -351,7 +351,7 @@ jobs:
message(FATAL_ERROR "Build failed")
endif()

- name: Build Mach Tests
- name: Build MISO Tests
shell: cmake -P {0}
run: |
set(ENV{NINJA_STATUS} "[%f/%t %o/sec] ")
Expand All @@ -370,7 +370,7 @@ jobs:
# execute_process(COMMAND ccache -z)

execute_process(
COMMAND cmake --build mach/build --target build_tests
COMMAND cmake --build miso/build --target build_tests
RESULT_VARIABLE result
OUTPUT_VARIABLE output
ERROR_VARIABLE output
Expand All @@ -383,8 +383,8 @@ jobs:
message(FATAL_ERROR "Build failed")
endif()

- name: Test Mach
working-directory: mach/build
- name: Test MISO
working-directory: miso/build
shell: bash
run: ctest --output-on-failure

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
buildflags: "-fno-openmp",
}
steps:
- name: Clone Mach
- name: Clone MISO
uses: actions/checkout@v2
with:
fetch-depth: 2
Expand Down Expand Up @@ -276,13 +276,13 @@ jobs:
message(FATAL_ERROR "Build failed")
endif()

# - name: Clone Mach
# - name: Clone MISO
# uses: actions/checkout@v2
# with:
# # path: mach
# # path: miso
# fetch-depth: 2

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

- name: Generate Compile Commands
Expand Down
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Object, binary, and library files
*.o
/libmach.*
/libmiso.*
*.bin
*.so
*.a
Expand Down Expand Up @@ -42,11 +42,11 @@
build/*
lib/*
include/*
!build/mach_config.sh
!build/miso_config.sh

# python wrapper related files
/mach/__pycache__
/mach.egg-info
/miso/__pycache__
/miso.egg-info

# smb meshes in the sandbox
sandbox/*.smb
Expand Down
Loading