diff --git a/.ci/build-kit/scripts/compile.sh b/.ci/build-kit/scripts/compile.sh index c81ad37..68a8c49 100755 --- a/.ci/build-kit/scripts/compile.sh +++ b/.ci/build-kit/scripts/compile.sh @@ -6,7 +6,7 @@ cmake \ -G Ninja \ -DBUILD_TESTING=ON \ -DCMAKE_BUILD_TYPE=Debug \ - -DCMAKE_INSTALL_PREFIX="$EXT_MOUNT/source/dist" \ + -DCMAKE_INSTALL_PREFIX="$EXT_MOUNT/build/dist" \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON retVal=$? diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 4ffae98..049f091 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -32,4 +32,4 @@ jobs: ctest_report_path: ctest-report coverage_report_path: gcovr-coverage coverage_xml_path: gcovr-coverage-xml.xml - dist_path: source/dist + dist_path: build/dist