File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -86,31 +86,29 @@ jobs:
8686 uses : actions/checkout@v2
8787 with :
8888 repository : InfinyTech3D/ConstraintGeometry
89- path : deps /ConstraintGeometry
89+ path : downstream /ConstraintGeometry
9090
9191 - name : Build and install ConstraintGeometry
9292 shell : bash
9393 run : |
94- mkdir -p deps /ConstraintGeometry/build
94+ mkdir -p downstream /ConstraintGeometry/build
9595 if [[ "$RUNNER_OS" == "Windows" ]]; then
9696 cmd //c "${{ steps.sofa.outputs.vs_vsdevcmd }} \
97- && cd /d %GITHUB_WORKSPACE%/deps /ConstraintGeometry/build \
97+ && cd /d %GITHUB_WORKSPACE%/downstream /ConstraintGeometry/build \
9898 && cmake \
9999 -GNinja \
100100 -DCMAKE_PREFIX_PATH=$SOFA_ROOT/lib/cmake;%WORKSPACE_INSTALL_PATH%/lib/cmake \
101101 -DCMAKE_BUILD_TYPE=Release \
102- -DCMAKE_INSTALL_PREFIX=%GITHUB_WORKSPACE%/install/ConstraintGeometry \
103102 .. \
104- && ninja install "
103+ && ninja"
105104 else
106- cd deps /ConstraintGeometry/build
105+ cd downstream /ConstraintGeometry/build
107106 cmake \
108107 -GNinja \
109108 -DCMAKE_PREFIX_PATH="$SOFA_ROOT/lib/cmake;$WORKSPACE_INSTALL_PATH/lib/cmake" \
110109 -DCMAKE_BUILD_TYPE=Release \
111- -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install/ConstraintGeometry \
112110 ..
113- ninja install
111+ ninja
114112 fi
115113
116114 - name : Debug install tree
You can’t perform that action at this time.
0 commit comments