Compare commits

...

2 Commits

Author SHA1 Message Date
Henrik Grimler 29aac0f5cb
BridgeManager: print error code when alt_setting function fail 2021-11-22 17:33:00 +01:00
Henrik Grimler 3d74deee1e
builds: test build for ubuntu 20.04 as well 2021-11-22 17:32:57 +01:00
2 changed files with 24 additions and 1 deletions

23
.builds/ubuntu.yml Normal file
View File

@ -0,0 +1,23 @@
image: ubuntu/lts
sources:
- https://git.sr.ht/~grimler/Heimdall
artifacts:
- Heimdall/build/bin/heimdall
- Heimdall/build/bin/heimdall-frontend
packages:
- cmake
- g++
- pkg-config
- libusb-1.0-0-dev
- qtbase5-dev
- zlib1g-dev
tasks:
- build: |
cd Heimdall
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j8

View File

@ -265,7 +265,7 @@ bool BridgeManager::SetupDeviceInterface(void)
if (result != LIBUSB_SUCCESS)
{
Interface::PrintError("Setting up interface failed!\n");
Interface::PrintError("Setting up interface failed with error code %i!\n", result);
return (false);
}