mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com>
45 lines
1.3 KiB
Bash
Executable File
45 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Mounting essential filesystems"
|
|
mount -t proc proc /proc
|
|
mount -t sysfs sys /sys
|
|
mkdir -p /dev/pts
|
|
mount -t devpts devpts /dev/pts
|
|
mkdir -p /dev/shm
|
|
mount -t tmpfs tmpfs /dev/shm
|
|
mount -t tmpfs tmpfs /tmp
|
|
chmod 1777 /tmp
|
|
mount -t tmpfs tmpfs /run
|
|
mkdir -p /run/dbus
|
|
mkdir -p /run/user/0
|
|
chmod 700 /run/user/0
|
|
mount -t tmpfs tmpfs /var/tmp
|
|
|
|
echo "Setting up hostname and machine-id for D-Bus"
|
|
echo "electron-test" > /etc/hostname
|
|
hostname electron-test
|
|
cat /proc/sys/kernel/random/uuid | tr -d '-' > /etc/machine-id
|
|
|
|
echo "Setting system clock"
|
|
date -s "$(cat /host-time)"
|
|
|
|
|
|
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
export XDG_RUNTIME_DIR=/run/user/0
|
|
|
|
echo "Starting entrypoint"
|
|
echo "System: $(uname -s) $(uname -r) $(uname -m), page size: $(getconf PAGESIZE) bytes"
|
|
sudo chown -R builduser:builduser /home/builduser
|
|
ls -la /home/builduser/src/out/Default/electron
|
|
cd /home/builduser/src
|
|
runuser -u builduser -- xvfb-run out/Default/electron electron/spec/fixtures/apps/open-new-window-from-link
|
|
EXIT_CODE=$?
|
|
echo "Test execution finished with exit code $EXIT_CODE"
|
|
echo $EXIT_CODE > /exit-code
|
|
sync
|
|
|
|
echo "Powering off"
|
|
# poweroff -f bypasses the init system (this script IS pid 1) and
|
|
# directly invokes the reboot() syscall, causing QEMU to exit immediately.
|
|
poweroff -f
|