-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use previous election security warning filtering
The swap file descriptor method fail to work on GitLab CI or Azure Devops for example but works on GitHub Actions. Revert to using the previous method to avoid the issue.
- Loading branch information
1 parent
1dc26bc
commit 49acb9a
Showing
7 changed files
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
set -euo pipefail | ||
|
||
# Start Xvfb | ||
export DISPLAY="${XVFB_DISPLAY}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
set -euo pipefail | ||
|
||
if [ "${ELECTRON_DISABLE_SECURITY_WARNINGS}" == "true" ]; then | ||
"$DRAWIO_DESKTOP_EXECUTABLE_PATH" "$@" --no-sandbox 3>&1 >&2 2>&3 3>&- | | ||
"$DRAWIO_DESKTOP_EXECUTABLE_PATH" "$@" --no-sandbox 2>&1 | | ||
grep -v "Failed to connect to socket" | | ||
grep -v "Could not parse server address" | | ||
grep -v "Floss manager not present" | | ||
grep -v "Exiting GPU process" | | ||
grep -v "called with multiple threads" | | ||
grep -v "extension not supported" | | ||
grep -v "Failed to send GpuControl.CreateCommandBuffer" | ||
grep -v "Failed to send GpuControl.CreateCommandBuffer" | | ||
grep -v "Init observer found at shutdown" | ||
else | ||
"$DRAWIO_DESKTOP_EXECUTABLE_PATH" "$@" --no-sandbox 2>&1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Failed to connect to the bus: Failed to connect to socket /run/dbus/system_bus_socket: No such file or directory | ||
Failed to connect to the bus: Failed to connect to socket /run/dbus/system_bus_socket: No such file or directory | ||
Failed to connect to the bus: Could not parse server address: Unknown address type (examples of valid types are "tcp" and on UNIX "unix") | ||
Failed to connect to the bus: Could not parse server address: Unknown address type (examples of valid types are "tcp" and on UNIX "unix") | ||
Failed to connect to the bus: Could not parse server address: Unknown address type (examples of valid types are "tcp" and on UNIX "unix") | ||
Failed to connect to the bus: Could not parse server address: Unknown address type (examples of valid types are "tcp" and on UNIX "unix") | ||
Floss manager not present, cannot set Floss enable/disable. | ||
Exiting GPU process due to errors during initialization | ||
InitializeSandbox() called with multiple threads in process gpu-process. | ||
dri3 extension not supported. | ||
ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer. | ||
file1.drawio -> file1.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters