File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,13 @@ tar -xf build-products.tar
1515echo ' +++ :periphery: Detecting unused code'
1616set +e
1717# This is the script in the root.
18- ./Scripts/Periphery/setup-and-run-periphery.sh --strict --quiet --skip-build --index-store-path ' DerivedData/Index.noindex/DataStore/'
18+
19+ # Construct the absolute path to the index store.
20+ # The command you ran locally that worked used an absolute path. The CI was using a relative path.
21+ # This ensures the CI command is identical to the one that succeeded locally.
22+ INDEX_STORE_PATH=" $( pwd) /DerivedData/Index.noindex/DataStore/"
23+
24+ ./Scripts/Periphery/setup-and-run-periphery.sh --strict --quiet --skip-build --index-store-path " $INDEX_STORE_PATH "
1925TESTS_EXIT_STATUS=$?
2026set -e
2127
You can’t perform that action at this time.
0 commit comments