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

[DO-NOT-MERGE] Investigate openssl3 issues #6988

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 3 additions & 2 deletions builds/e2e/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,9 @@ jobs:
displayName: Ubuntu 22.04 on amd64

pool:
name: $(pool.custom.name)
demands: ubu2204-e2e-tests
name: $(pool.linux.name)
demands:
- ImageOverride -equals agent-aziotedge-ubuntu-22.04-msmoby

variables:
os: linux
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ public string[] GetInstallCommandsFromLocal(string path)
{
"set -e",
$"apt-get install -y --option DPkg::Lock::Timeout=600 {string.Join(' ', packages)}",
$"apt-get install -f --option DPkg::Lock::Timeout=600"
$"apt-get install -f --option DPkg::Lock::Timeout=600",
$"apt show openssl -a",
$"apt show libssl* -a",
$"which openssl",
$"openssl version"

},
SupportedPackageExtension.Rpm => this.os switch {
"centos" => new[]
Expand Down