Skip to content

Commit

Permalink
Stop specifying a specific OpenSSL installation
Browse files Browse the repository at this point in the history
This seems to be a relic from when M1 builds were new and consequently
less well-supported. Going to attempt to go to latest now and see
if our CI is amenable.
  • Loading branch information
jonathanrainer committed Oct 25, 2024
1 parent 257f55e commit 3053154
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,8 @@ commands:
- equal: [*arm_macos_executor, << parameters.platform >>]
steps:
- run:
name: Install OpenSSL@1.1
command: brew install openssl@1.1
name: Install OpenSSL
command: brew install openssl@1
- run:
name: Install p7zip
command: brew install p7zip
Expand Down
6 changes: 3 additions & 3 deletions xtask/src/target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ impl Target {
} else if self.is_macos() {
let openssl_path = BREW_OPT
.iter()
.map(|x| Utf8Path::new(x).join("openssl@1.1"))
.map(|x| Utf8Path::new(x).join("openssl@1"))
.find(|x| x.exists())
.ok_or_else(|| {
anyhow!(
"OpenSSL v1.1 is not installed. Please install with `brew install \
openssl@1.1`"
"OpenSSL is not installed. Please install with `brew install \
openssl@1`"
)
})?;

Expand Down

0 comments on commit 3053154

Please sign in to comment.