Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
include:
- build_host: ubuntu-latest
build_type: linux-native-gcc
- build_host: macos-13
- build_host: macos-15-intel
build_type: macos-native-clang-x86_64
- build_host: macos-latest
build_type: macos-native-clang-arm64
Expand All @@ -37,9 +37,9 @@ jobs:
run: bash -e -x scripts/install_dependencies.sh
- name: Build package
run: bash -e -x scripts/build_package.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v6
with:
name: build-result
name: build-result-${{ matrix.build_type }}
path: upload/*
- name: Upload release
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion external/libusb-1.0
Submodule libusb-1.0 updated 94 files
+36 −0 .clang-tidy
+3 −0 .codespellrc
+59 −16 .github/workflows/linux.yml
+1 −1 .github/workflows/macos.yml
+8 −6 .github/workflows/msys2.yml
+29 −0 .github/workflows/msys2_clang64-aarch64.yml
+21 −0 .github/workflows/msys2_clang64.yml
+37 −0 .github/workflows/windows.yml
+17 −0 .gitignore
+5 −1 .private/appveyor_build.sh
+26 −1 .private/ci-build.sh
+2 −5 .private/ci-container-build.sh
+1 −1 .private/wbs.txt
+29 −0 AUTHORS
+43 −2 ChangeLog
+25 −0 HACKING
+123 −0 KEYS
+2 −2 NEWS
+1 −5 README
+1 −1 README.git
+28 −1 Xcode/common.xcconfig
+4 −1 Xcode/debug.xcconfig
+1 −1 Xcode/libusb.xcconfig
+70 −36 Xcode/libusb.xcodeproj/project.pbxproj
+1 −1 Xcode/libusb_debug.xcconfig
+1 −1 Xcode/libusb_release.xcconfig
+1 −1 Xcode/release.xcconfig
+1 −0 android/examples/unrooted_android.c
+38 −9 configure.ac
+2 −2 examples/dpfp.c
+6 −1 examples/ezusb.c
+9 −7 examples/fxload.c
+47 −24 examples/hotplugtest.c
+42 −4 examples/listdevs.c
+1 −1 examples/sam3u_benchmark.c
+2 −1 examples/testlibusb.c
+204 −84 examples/xusb.c
+9 −2 libusb/Makefile.am
+464 −148 libusb/core.c
+643 −89 libusb/descriptor.c
+32 −12 libusb/hotplug.c
+67 −54 libusb/io.c
+25 −1 libusb/libusb-1.0.def
+395 −89 libusb/libusb.h
+126 −30 libusb/libusbi.h
+618 −240 libusb/os/darwin_usb.c
+52 −121 libusb/os/darwin_usb.h
+757 −508 libusb/os/emscripten_webusb.cpp
+23 −32 libusb/os/events_posix.c
+3 −0 libusb/os/events_posix.h
+97 −28 libusb/os/linux_usbfs.c
+13 −3 libusb/os/linux_usbfs.h
+38 −38 libusb/os/netbsd_usb.c
+35 −35 libusb/os/openbsd_usb.c
+30 −20 libusb/os/sunos_usb.c
+20 −23 libusb/os/threads_posix.c
+9 −3 libusb/os/threads_posix.h
+4 −3 libusb/os/threads_windows.h
+76 −3 libusb/os/windows_common.c
+17 −0 libusb/os/windows_common.h
+349 −0 libusb/os/windows_hotplug.c
+28 −0 libusb/os/windows_hotplug.h
+14 −8 libusb/os/windows_usbdk.c
+974 −189 libusb/os/windows_winusb.c
+12 −1 libusb/os/windows_winusb.h
+2 −2 libusb/strerror.c
+15 −7 libusb/sync.c
+1 −1 libusb/version.h
+1 −1 libusb/version_nano.h
+7 −7 msvc/Base.props
+4 −3 msvc/Configuration.Base.props
+18 −0 msvc/Configuration.DynamicLibrary.props
+117 −0 msvc/ProjectConfigurations.Base.props
+6 −2 msvc/config.h
+35 −0 msvc/init_context.vcxproj
+797 −1 msvc/libusb.sln
+2 −0 msvc/libusb_dll.vcxproj
+2 −0 msvc/libusb_static.vcxproj
+35 −0 msvc/set_option.vcxproj
+33 −0 msvc/stress_mt.vcxproj
+25 −3 tests/Makefile.am
+ tests/fuzz/corpus/bos/min.bos
+49 −0 tests/fuzz/fuzz_bos_descriptor.c
+153 −0 tests/init_context.c
+130 −0 tests/macos.c
+253 −0 tests/set_option.c
+17 −14 tests/stress.c
+268 −0 tests/stress_mt.c
+1 −1 tests/testlib.c
+9 −9 tests/umockdev.c
+1 −0 tests/webusb-test-shim/.gitignore
+13 −0 tests/webusb-test-shim/index.js
+50 −0 tests/webusb-test-shim/package-lock.json
+10 −0 tests/webusb-test-shim/package.json
Loading