Skip to content

Commit

Permalink
fix: build system path passed through a environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RedLeader962 committed Dec 11, 2023
1 parent e215e81 commit 1f021cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build_system/docker-compose.dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
build:
target: libpointmatcher-dependencies-general
context: ..
dockerfile: ./build_system/ubuntu/Dockerfile.dependencies
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR:?err}/ubuntu/Dockerfile.dependencies
platforms:
- "linux/amd64"
- "linux/arm64/v8"
Expand All @@ -33,7 +33,7 @@ services:
image: ${NBS_DOCKERHUB_NAMESPACE:?err}/libpointmatcher-dependencies-doc:${NBS_IMAGE_TAG:?err}
build:
context: ..
dockerfile: ./build_system/ubuntu/Dockerfile.dependencies.doxygen
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR:?err}/ubuntu/Dockerfile.dependencies.doxygen
platforms:
- "linux/amd64"
- "linux/arm64/v8"
Expand Down
8 changes: 4 additions & 4 deletions build_system/docker-compose.libpointmatcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
pull_policy: build
build:
context: ..
dockerfile: ubuntu/Dockerfile.libpointmatcher.compilation_test
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR:?err}/ubuntu/Dockerfile.libpointmatcher.compilation_test
target: test-compilation-auto-path-resolution
## Mute 'platforms' while using arch virtualization with C++ build to prevent segmentation fault during lpm cmake install
# platforms:
Expand Down Expand Up @@ -48,7 +48,7 @@ services:
pull_policy: build
build:
context: ..
dockerfile: ubuntu/Dockerfile.libpointmatcher.ci_PR
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR}/ubuntu/Dockerfile.libpointmatcher.ci_PR
no_cache: true
args:
PROJECT_HUB: ${NBS_DOCKERHUB_NAMESPACE}
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
pull_policy: build
build:
context: ..
dockerfile: ubuntu/Dockerfile.libpointmatcher.ci_SITREP_matrix
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR}/ubuntu/Dockerfile.libpointmatcher.ci_SITREP_matrix
no_cache: true
args:
PROJECT_HUB: ${NBS_DOCKERHUB_NAMESPACE}
Expand All @@ -106,7 +106,7 @@ services:
container_name: libpointmatcher
build:
context: ..
dockerfile: ubuntu/Dockerfile.libpointmatcher.hub_release
dockerfile: ${NBS_SUPERPROJECT_BUILD_SYSTEM_DIR}/ubuntu/Dockerfile.libpointmatcher.hub_release
platforms:
- "linux/amd64"
- "linux/arm64/v8"
Expand Down

0 comments on commit 1f021cd

Please sign in to comment.