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
3 changes: 3 additions & 0 deletions .github/ci/packages.apt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
binutils-dev
freeglut3-dev
libbenchmark-dev
libdwarf-dev
libdw-dev
libfreeimage-dev
libglew-dev
libgz-cmake5-dev
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
with:
# per bug https://github.com/gazebosim/gz-sim/issues/1409
cmake-args: '-DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOCS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo'
apt-dependencies: libdwarf-dev libdw-dev binutils-dev

noble-ci-disable-gui:
runs-on: ubuntu-latest
Expand All @@ -46,4 +45,3 @@ jobs:
with:
# per bug https://github.com/gazebosim/gz-sim/issues/1409
cmake-args: '-DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOCS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_GUI=OFF'
apt-dependencies: libdwarf-dev libdw-dev binutils-dev
4 changes: 2 additions & 2 deletions src/gui/Gui.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ std::string defaultGuiConfigFile(bool _isPlayback,
{
gzerr << "Failed to create the default config folder ["
<< defaultConfigFolder << "]\n";
return nullptr;
return "";
}
}

Expand All @@ -217,7 +217,7 @@ std::string defaultGuiConfigFile(bool _isPlayback,
gzerr << "Failed to copy installed config [" << installedConfig
<< "] to default config [" << defaultConfig << "]."
<< std::endl;
return nullptr;
return "";
}
else
{
Expand Down