Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Git repositories from base images #82

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions base/install_area_detector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ git submodule update --init --depth 1 -j ${JOBS} \
ADSupport \
ADCore

rm -rf .git

cd configure

module_releases="
Expand Down Expand Up @@ -103,6 +105,7 @@ cd ..

download_from_github cnpem ssc-pimega $LIBSSCPIMEGA_VERSION
make -C ssc-pimega/c install
rm -rf ssc-pimega

install_from_github cnpem NDSSCPimega NDSSCPIMEGA $NDSSCPIMEGA_VERSION "
EPICS_BASE
Expand Down
2 changes: 2 additions & 0 deletions base/install_motor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ git submodule update --init -j ${JOBS} \

git -C motorPIGCS2 checkout ${PIGCS2_VERSION}

rm -rf .git

module_releases="
MOTOR=${EPICS_MODULES_PATH}/motor
MOTOR_MOTORSIM=${EPICS_MODULES_PATH}/motor/modules/motorMotorSim
Expand Down