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 packages.microsoft.com registration from test script #616

Merged
merged 1 commit into from
Jun 4, 2024
Merged
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
6 changes: 1 addition & 5 deletions ci/e2e-tests/helper-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,7 @@ installTestTools() {
local os="${distributor_id,,}"
case "$os" in
debian|ubuntu)
release="$(lsb_release -rs)"
wget "https://packages.microsoft.com/config/$os/$release/packages-microsoft-prod.deb" \
-O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
# these next commands assume that packages.microsoft.com has already been added to the apt sources list
set +e
for retry in {0..3}; do
if [ "$retry" != "0" ]; then
Expand Down
Loading