mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-21 13:25:40 +00:00
CI: Build fix
This commit is contained in:
parent
1611885c12
commit
7c102ec29d
8
.github/workflows/rolling-release.yml
vendored
8
.github/workflows/rolling-release.yml
vendored
|
@ -281,15 +281,15 @@ jobs:
|
|||
|
||||
- name: Generate AppStream XML
|
||||
run: |
|
||||
scripts/generate-metainfo.sh scripts/flatpak/org.duckstation.duckstation.metainfo.xml
|
||||
cat scripts/flatpak/org.duckstation.duckstation.metainfo.xml
|
||||
flatpak run org.freedesktop.appstream-glib validate scripts/flatpak/org.duckstation.duckstation.metainfo.xml
|
||||
scripts/generate-metainfo.sh scripts/flatpak
|
||||
cat scripts/flatpak/org.duckstation.DuckStation.metainfo.xml
|
||||
flatpak run org.freedesktop.appstream-glib validate scripts/flatpak/org.duckstation.DuckStation.metainfo.xml
|
||||
|
||||
- name: Build Flatpak
|
||||
uses: flatpak/flatpak-github-actions/flatpak-builder@v6.1
|
||||
with:
|
||||
bundle: duckstation-x64.flatpak
|
||||
manifest-path: scripts/flatpak/org.duckstation.duckstation.json
|
||||
manifest-path: scripts/flatpak/org.duckstation.DuckStation.json
|
||||
arch: x86_64
|
||||
build-bundle: true
|
||||
verbose: true
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include "common/small_string.h"
|
||||
#include "common/types.h"
|
||||
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
|
|
@ -263,7 +263,7 @@ bool NoGUIHost::InitializeConfig(std::string settings_filename)
|
|||
if (!Log::IsConsoleOutputEnabled() &&
|
||||
s_base_settings_interface->GetBoolValue("Logging", "LogToConsole", Settings::DEFAULT_LOG_TO_CONSOLE))
|
||||
{
|
||||
Log::SetConsoleOutputParams(true, nullptr, LOGLEVEL_NONE);
|
||||
Log::SetConsoleOutputParams(true, s_base_settings_interface->GetBoolValue("Logging", "LogTimestamps", true));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
@ -505,7 +505,7 @@ bool RegTestHost::ParseCommandLineParameters(int argc, char* argv[], std::option
|
|||
return false;
|
||||
}
|
||||
|
||||
Log::SetConsoleOutputParams(true, nullptr, level.value());
|
||||
Log::SetConsoleOutputParams(true, level.value());
|
||||
s_base_settings_interface->SetStringValue("Logging", "LogLevel", Settings::GetLogLevelName(level.value()));
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -33,8 +33,6 @@ int main(int argc, char* argv[])
|
|||
const ProcessSerialNumber psn = {0, kCurrentProcess};
|
||||
TransformProcessType(&psn, kProcessTransformToForegroundApplication);
|
||||
|
||||
Log::SetConsoleOutputParams(true, "", LOGLEVEL_DEBUG);
|
||||
|
||||
CocoaProgressCallback progress;
|
||||
|
||||
if (argc != 4)
|
||||
|
|
Loading…
Reference in a new issue