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
2 changes: 1 addition & 1 deletion .actions/build-linux-i686-w64-mingw32-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
EOF

# Build and install libcbor.
git clone --depth=1 https://github.com/pjk/libcbor -b v0.13.0
git clone --depth=1 https://github.com/pjk/libcbor -b v0.14.0
cd libcbor
mkdir build
(cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \
Expand Down
2 changes: 1 addition & 1 deletion .actions/build-linux-openssl3-i686-w64-mingw32-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
EOF

# Build and install libcbor.
git clone --depth=1 https://github.com/pjk/libcbor -b v0.13.0
git clone --depth=1 https://github.com/pjk/libcbor -b v0.14.0
cd libcbor
mkdir build
(cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \
Expand Down
2 changes: 1 addition & 1 deletion .actions/fuzz-linux
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# SPDX-License-Identifier: BSD-2-Clause

LIBCBOR_URL="https://github.com/pjk/libcbor"
LIBCBOR_TAG="v0.13.0"
LIBCBOR_TAG="v0.14.0"
LIBCBOR_ASAN="address alignment bounds"
LIBCBOR_MSAN="memory"
OPENSSL_URL="https://github.com/openssl/openssl"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk -q update
RUN apk add build-base clang clang-analyzer cmake compiler-rt coreutils
RUN apk add eudev-dev git linux-headers llvm openssl-dev pcsc-lite-dev
RUN apk add sudo tar zlib-dev
RUN git clone --branch v0.13.0 --depth=1 https://github.com/PJK/libcbor
RUN git clone --branch v0.14.0 --depth=1 https://github.com/PJK/libcbor
RUN git clone --depth=1 https://github.com/yubico/libfido2
WORKDIR /libfido2
RUN ./fuzz/build-coverage /libcbor /libfido2
4 changes: 2 additions & 2 deletions windows/const.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ New-Variable -Name 'CRYPTO_LIB' -Value 'crypto' -Option Constant
New-Variable -Name 'CRYPTO_DLL' -Value 'crypto-57' -Option Constant

# libcbor coordinates.
New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.13.0' -Option Constant
New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.13.0' -Option Constant
New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.14.0' -Option Constant
New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.14.0' -Option Constant
New-Variable -Name 'LIBCBOR_GIT' -Value 'https://github.com/pjk/libcbor' `
-Option Constant

Expand Down
Loading