-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,9 +149,13 @@ jobs: | |
with: | ||
submodules: recursive | ||
- run: brew update | ||
# NOTE: latest known compatible versions are [email protected] and mbedtls--3.4.0 | ||
# NOTE: try the brew install command twice to work around "brew link" errors | ||
- run: INSTALL_CMD="brew install openssl mbedtls $COMPILER_VERSION"; $INSTALL_CMD || $INSTALL_CMD | ||
- run: INSTALL_CMD="brew install openssl $COMPILER_VERSION"; $INSTALL_CMD || $INSTALL_CMD | ||
# NOTE: Some tests don't pass on mbedTLS 3.6.2 now, so we need to install an older version | ||
# Homebrew only specifiers major version of mbedTLS, so let's pin the version to 3.6.0 manually | ||
- run: curl https://raw.githubusercontent.com/Homebrew/homebrew-core/219dabf6cab172fb8b62b4d8598e016e190c3c20/Formula/m/mbedtls.rb > /tmp/mbedtls.rb | ||
- run: brew install --formula /tmp/mbedtls.rb | ||
- run: brew pin mbedtls | ||
# NOTE: The above command may have installed a new version of Python, that's why we launch it weirdly | ||
- run: /usr/bin/env python3 -m pip install -r requirements.txt | ||
- run: env JAVA_HOME="$JAVA_HOME_17_X64" ./devconfig --with-asan --without-analysis --no-examples -DWITH_VALGRIND_TRACK_ORIGINS=OFF -DWITH_URL_CHECK=OFF -DWITH_IPV6=OFF | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters