Skip to content

Commit b55742c

Browse files
committed
[ci] Remove installation step for ConstraintGeometry - build only
1 parent 3188fde commit b55742c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)