-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed build for tls v1.3 on openssl v1.0.2. Added CI check (#253)
* fixed build for tls v1.3 on openssl v1.0.2. Added CI check * fixed ci step name * Include test for openssl v3.0 * Make reference to [email protected] on the Readme given its the LTS version
- Loading branch information
1 parent
104ed9f
commit b2a4041
Showing
3 changed files
with
21 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 |
---|---|---|
|
@@ -101,13 +101,27 @@ jobs: | |
bash <(curl -s https://codecov.io/bash) -f memtier_benchmark-*-coverage.info || echo "Codecov did not collect coverage reports" | ||
build-macos: | ||
strategy: | ||
matrix: | ||
openssl: ["1.1", "3.0"] | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install dependencies | ||
run: brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }} | ||
- name: Build | ||
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/openssl@${{ matrix.openssl }}/lib/pkgconfig ./configure && make | ||
|
||
build-macos-openssl-1-0-2: | ||
strategy: | ||
matrix: | ||
platform: [macos-latest] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install dependencies | ||
run: brew install autoconf automake libtool libevent pkg-config [email protected] | ||
run: brew install autoconf automake libtool libevent pkg-config | ||
- name: Install openssl v1.0.2 | ||
run: brew install rbenv/tap/[email protected] | ||
- name: Build | ||
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig ./configure && make | ||
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/openssl@1.0/lib/pkgconfig ./configure && make |
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
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