All checks were successful
Build App / Build (push) Successful in 2m32s
Limit FPS Config screen W/H
13 lines
411 B
Bash
Executable File
13 lines
411 B
Bash
Executable File
#!/bin/sh
|
|
echo "build podman image"
|
|
podman build . -t cross_compile/rust_aarch64
|
|
echo "run build"
|
|
podman run --rm -v .:/app cross_compile/rust_aarch64
|
|
|
|
|
|
ssh tom@raspberrypi.local -f 'sudo systemctl stop lightdm'
|
|
ssh tom@raspberrypi.local -f 'killall ladose-caller'
|
|
scp ./target/aarch64-unknown-linux-gnu/release/ladose-caller tom@raspberrypi.local:
|
|
|
|
ssh tom@raspberrypi.local -f 'sudo systemctl start lightdm'
|