This is an automated email from Gerrit. Tarek BOCHKATI ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/6383
-- gerrit commit 7df8b9bbe3f87d84afba383e446ecf2fca9b36d2 Author: Tarek BOCHKATI <[email protected]> Date: Wed Jul 28 10:14:51 2021 +0100 github/workflow: upgrade libraries in windows build to latest versions Change-Id: I11fb6eb948531f1a2e8c0c3926cac52cf92765b9 Reported-by: Xiaofan <[email protected]> Signed-off-by: Tarek BOCHKATI <[email protected]> diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index bde803c..81e3a78 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -22,7 +22,7 @@ jobs: - run: ./bootstrap - name: Prepare libusb1 env: - LIBUSB1_VER: 1.0.23 + LIBUSB1_VER: 1.0.24 run: | mkdir -p $DL_DIR && cd $DL_DIR wget "https://github.com/libusb/libusb/releases/download/v${LIBUSB1_VER}/libusb-${LIBUSB1_VER}.tar.bz2" @@ -30,7 +30,7 @@ jobs: echo "LIBUSB1_SRC=$PWD/libusb-${LIBUSB1_VER}" >> $GITHUB_ENV - name: Prepare hidapi env: - HIDAPI_VER: 0.9.0 + HIDAPI_VER: 0.10.1 run: | mkdir -p $DL_DIR && cd $DL_DIR wget "https://github.com/libusb/hidapi/archive/hidapi-${HIDAPI_VER}.tar.gz" @@ -40,7 +40,7 @@ jobs: echo "HIDAPI_SRC=$PWD" >> $GITHUB_ENV - name: Prepare libftdi env: - LIBFTDI_VER: 1.4 + LIBFTDI_VER: 1.5 run: | mkdir -p $DL_DIR && cd $DL_DIR wget "http://www.intra2net.com/en/developer/libftdi/download/libftdi1-${LIBFTDI_VER}.tar.bz2" --
