Skip to content

Commit

Permalink
Merge commit '744edec5fbaaa1a45b2f13fb13f0d8ca308f35d5'
Browse files Browse the repository at this point in the history
  • Loading branch information
slabajo committed Nov 4, 2024
2 parents ab839c7 + 744edec commit 0e9d876
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions ci-scripts/ci_job_deploy_debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,25 +141,25 @@ set -o xtrace
# Exit trap, used to clean up.
on_exit() {
ssh -n -o StrictHostKeyChecking=no -i /id_aptly_ssh \
aptly@www.naevatec.com -p 3322 '\
aptly@aptly.naevatec.com -p 3322 '\
rm -rf "$TEMP_DIR"'
}
trap on_exit EXIT
ssh -n -o StrictHostKeyChecking=no -i /id_aptly_ssh \
aptly@www.naevatec.com -p 3322 '\
aptly@aptly.naevatec.com -p 3322 '\
mkdir -p "$TEMP_DIR"'
scp -o StrictHostKeyChecking=no -i /id_aptly_ssh \
-P 3322 ./*.*deb \
aptly@www.naevatec.com:"$TEMP_DIR"
aptly@aptly.naevatec.com:"$TEMP_DIR"
scp -o StrictHostKeyChecking=no -i /id_aptly_ssh \
-P 3322 /ci-scripts/ci_aptly_repo_publish.sh \
aptly@www.naevatec.com:"$TEMP_DIR"
aptly@aptly.naevatec.com:"$TEMP_DIR"
ssh -n -o StrictHostKeyChecking=no -i /id_aptly_ssh \
aptly@www.naevatec.com -p 3322 '\
aptly@aptly.naevatec.com -p 3322 '\
cd "$TEMP_DIR" \
&& GPGKEY="$APTLY_GPG_SUBKEY" \
./ci_aptly_repo_publish.sh $PUBLISH_ARGS'
Expand Down
2 changes: 1 addition & 1 deletion ci-scripts/ci_job_package_debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if [[ "$JOB_RELEASE" == "true" ]]; then
fi

if [[ "${DISABLE_APT_PROXY:-}" != "true" ]]; then
KURENTO_BUILDPACKAGE_ARGS+=(--apt-proxy http://proxy.openvidu.io:3142)
KURENTO_BUILDPACKAGE_ARGS+=(--apt-proxy http://apt-proxy.naevatec.com:3142)
fi


Expand Down
2 changes: 1 addition & 1 deletion ci-scripts/ci_job_package_gst_rust_debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if [[ "$JOB_RELEASE" == "true" ]]; then
fi

if [[ "${DISABLE_APT_PROXY:-}" != "true" ]]; then
KURENTO_BUILDPACKAGE_ARGS+=(--apt-proxy http://proxy.openvidu.io:3142)
KURENTO_BUILDPACKAGE_ARGS+=(--apt-proxy http://apt-proxy.naevatec.com:3142)
fi
if [[ -n "$GST_RUST_PACKAGE" ]]; then
KURENTO_BUILDPACKAGE_ARGS+=(--package "$GST_RUST_PACKAGE")
Expand Down

0 comments on commit 0e9d876

Please sign in to comment.