Skip to content
Merged
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
4 changes: 2 additions & 2 deletions build.assets/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ RUN git clone --depth=1 https://github.com/PJK/libcbor.git -b v0.10.2 && \

# Install openssl.
# install_sw install only binaries, skips docs.
RUN git clone --depth=1 https://github.com/openssl/openssl.git -b openssl-3.0.10 && \
RUN git clone --depth=1 https://github.com/openssl/openssl.git -b openssl-3.0.11 && \
cd openssl && \
[ "$(git rev-parse HEAD)" = '245cb0291e0db99d9ccf3692fa76f440b2b054c2' ] && \
[ "$(git rev-parse HEAD)" = '6ba3884c3235e1bb474b379026087f8216afacf4' ] && \
./config --release --libdir=/usr/local/lib && \
make && \
make install_sw
Expand Down
4 changes: 2 additions & 2 deletions build.assets/Dockerfile-centos7
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ RUN git clone --depth=1 https://github.com/PJK/libcbor.git -b v0.10.2 && \

# Install openssl.
# install_sw install only binaries, skips docs.
RUN git clone --depth=1 https://github.com/openssl/openssl.git -b openssl-3.0.10 && \
RUN git clone --depth=1 https://github.com/openssl/openssl.git -b openssl-3.0.11 && \
cd openssl && \
[ "$(git rev-parse HEAD)" = '245cb0291e0db99d9ccf3692fa76f440b2b054c2' ] && \
[ "$(git rev-parse HEAD)" = '6ba3884c3235e1bb474b379026087f8216afacf4' ] && \
./config --release --libdir=/usr/local/lib64 && \
make && \
make install_sw
Expand Down
4 changes: 2 additions & 2 deletions build.assets/build-fido2-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ readonly MACOS_VERSION_MIN=10.13
# Note: versions are the same as the corresponding git tags for each repo.
readonly CBOR_VERSION=v0.10.2
readonly CBOR_COMMIT=efa6c0886bae46bdaef9b679f61f4b9d8bc296ae
readonly CRYPTO_VERSION=openssl-3.0.10
readonly CRYPTO_COMMIT=245cb0291e0db99d9ccf3692fa76f440b2b054c2
readonly CRYPTO_VERSION=openssl-3.0.11
readonly CRYPTO_COMMIT=6ba3884c3235e1bb474b379026087f8216afacf4
readonly FIDO2_VERSION=1.12.0
readonly FIDO2_COMMIT=659a02679f99fd34a44e06e35dce90794f6ecc86

Expand Down