-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from norlab-ulaval/dev-feat-integrate-norlab-…
…build-system-library-and-implement-linabo-build-system-NMO-405 Implement linabo-build-system
- Loading branch information
Showing
78 changed files
with
3,628 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
# Note: | ||
# - libnabo cmake install require that the README.md file exist in the docker image | ||
# - libnaboer-CI doc related step require that .svg, .png and .md be copied in the docker image | ||
|
||
# Graphic/image related | ||
*.svg | ||
*.svgz | ||
*.png | ||
*.drawio | ||
|
||
# Text related | ||
|
||
# Files | ||
|
||
|
||
# Directories | ||
drawio/* | ||
visual/* | ||
|
||
# IDE | ||
.run/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# ================================================================================================= | ||
# | ||
# Set project related environment variables. Those are available for convenience | ||
# and are also required by 'norlab-shell-script-tools' library. | ||
# | ||
# Usage: | ||
# | ||
# Important! Source this file from 'libnabo' repository root | ||
# $ cd <path/to/libnabo/> | ||
# $ set -o allexport && source .env.libnabo && set +o allexport | ||
# | ||
# ================================================================================================= | ||
|
||
PROJECT_PROMPT_NAME='NABO' | ||
|
||
# ....Programaticaly fetch source code information................................................. | ||
PROJECT_GIT_REMOTE_URL="https://github.com/norlab-ulaval/libnabo" | ||
PROJECT_GIT_NAME=$( basename "${PROJECT_GIT_REMOTE_URL}" .git ) | ||
PROJECT_PATH=$( git rev-parse --show-toplevel ) | ||
PROJECT_SRC_NAME="$( basename ${PROJECT_PATH} )" | ||
|
||
# ....Set NABO related environment variable with their own prefix.................................. | ||
# Note: Those with "PROJECT_" prefix will get eventualy overiden in the case where N2ST is used | ||
# as a library. Using generic testing logic require that environment variables with | ||
# "PROJECT_" prefix be available. | ||
NABO_PROMPT_NAME="${PROJECT_PROMPT_NAME}" | ||
NABO_GIT_REMOTE_URL="${PROJECT_GIT_REMOTE_URL}" | ||
NABO_GIT_NAME="${PROJECT_GIT_NAME}" | ||
NABO_PATH="${PROJECT_PATH}" | ||
NABO_SRC_NAME="${PROJECT_SRC_NAME}" | ||
|
||
# ....Set dependencies path........................................................................ | ||
NABO_BUILD_SYSTEM_PATH="${PROJECT_PATH}/build_system" | ||
N2ST_PATH="${PROJECT_PATH}/build_system/utilities/norlab-shell-script-tools" | ||
NBS_PATH="${PROJECT_PATH}/build_system/utilities/norlab-build-system" |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ================================================================================================= | ||
# Files or directories with designated code owner. | ||
# | ||
# Note: | ||
# - Each line is a file pattern followed by one or more owners. | ||
# - Branch with branch protection rule "Require review from Code Owners" | ||
# will automaticaly trigger a request to a designated code owner | ||
# ================================================================================================= | ||
|
||
# ....Repository wide code owner................................................................... | ||
# These owners will be the default owners for everything in the repo. | ||
#* @pomerlef | ||
|
||
|
||
# ....High level files............................................................................. | ||
/README.md @pomerlef | ||
/LICENSE @pomerlef | ||
|
||
# ....Core directories and files................................................................... | ||
/examples @boxanm @simonpierredeschenes | ||
/nabo @boxanm @simonpierredeschenes | ||
/python @boxanm @simonpierredeschenes | ||
/tests @boxanm @simonpierredeschenes | ||
/contributing @RedLeader962 | ||
|
||
# ....User install tools........................................................................... | ||
/.env.libnabo @RedLeader962 | ||
/libnabo_dependencies_installer.bash @RedLeader962 | ||
/libnabo_installer.bash @RedLeader962 | ||
|
||
# ....DevOps related............................................................................... | ||
/.github/ @RedLeader962 | ||
/build_system/ @RedLeader962 | ||
/.gitmodules @RedLeader962 | ||
/.gitignore @RedLeader962 | ||
/.dockerignore @RedLeader962 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Description | ||
|
||
### Summary: | ||
|
||
### Changes and type of changes (quick overview): | ||
|
||
- | ||
- | ||
- | ||
|
||
--- | ||
|
||
# Checklist: | ||
|
||
### Code related | ||
|
||
- [ ] I have made corresponding changes to the documentation | ||
(i.e.: function, class, script header, README.md) | ||
- [ ] I have commented hard-to-understand code | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] All tests pass locally with my changes | ||
(Check [contributing/contributing_instructions.md](/contributing/contributing_instructions.md) for local testing procedure using _libnabo-build-system_) | ||
|
||
|
||
### PR creation related | ||
|
||
- [ ] My pull request `base ref` branch is set to the `develop` branch | ||
(the _build-system_ won't be triggered otherwise) | ||
- [ ] My pull request branch is up-to-date with the `develop` branch | ||
(the _build-system_ will reject it otherwise) | ||
|
||
### PR description related | ||
|
||
- [ ] I have included a quick summary of the changes | ||
- [ ] I have indicated the related issue's id with `# <issue-id>` if changes are of type `fix` | ||
- [ ] I have included a high-level list of changes and their corresponding types | ||
(See [contributing/commit_msg_reference.md](/contributing/commit_msg_reference.md) for details) | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "build_system/utilities/norlab-build-system"] | ||
path = build_system/utilities/norlab-build-system | ||
url = https://github.com/norlab-ulaval/norlab-build-system.git | ||
[submodule "utilities/norlab-shell-script-tools"] | ||
path = build_system/utilities/norlab-shell-script-tools | ||
url = https://github.com/norlab-ulaval/norlab-shell-script-tools.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
|
||
# | ||
# Dockerhub or self hosted hub domain name | ||
# | ||
NBS_DOCKERHUB_NAMESPACE=norlabulaval | ||
|
||
# | ||
# Repository url | ||
# | ||
# Note: | ||
# - Main repo: https://github.com/norlab-ulaval/libnabo | ||
# - Legacy repo: https://github.com/ethz-asl/libnabo | ||
|
||
NBS_REPOSITORY_DOMAIN=norlab-ulaval | ||
|
||
NBS_REPOSITORY_NAME=libnabo | ||
|
||
# | ||
# Install script variables | ||
# | ||
NBS_LIB_INSTALL_PATH=/opt/percep3d_libraries | ||
|
||
# | ||
# Path to the NBS build system directory (.env.build_matrix should be there) | ||
# | ||
NBS_SUPERPROJECT_BUILD_SYSTEM_DIR=./build_system | ||
|
||
# | ||
# NorLab-build-system & NorLab-sheel-script-tools | ||
# | ||
PROJECT_PROMPT_NAME=NABO | ||
NBS_SPLASH_NAME="Libnabo" | ||
NBS_SPLASH_NAME_BUILD_SYSTEM="Libnabo Build System" | ||
|
||
# | ||
# Docker built-in environment variable (do not change the variable name | ||
# | ||
COMPOSE_PROJECT_NAME=libnabo | ||
|
||
## Unmute BUILDKIT_PROGRESS to set globaly for debugging dockerfile | ||
## For debuging docker build localy, use `docker build --progress=plain --no-cache` flags instead | ||
#BUILDKIT_PROGRESS=plain | ||
|
Oops, something went wrong.