You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
foundry run -- workbench-cli ci $(ROOT)/demos/src/*
63
+
install:
64
+
artifact=$$(foundry export \
65
+
| grep -oE 'file://[^[:space:]]+'\
66
+
| tail -n1 \
67
+
| sed 's|^file://||');\
68
+
test -n "$$artifact"|| { echo"No artifact found";exit 1; };\
69
+
flatpak install --user --assumeyes "$$artifact"
70
+
71
+
ci: setup build test install
72
+
# We install because foundry has no flag to override permissions
73
+
# see Permissions.js for why we need them
74
+
flatpak run --command="workbench-cli" --share=network --socket=pulseaudio --device=input --filesystem=$(ROOT) re.sonny.Workbench.Devel ci $(ROOT)/demos/src/*
75
+
69
76
70
77
flatpak:
71
78
flatpak run org.flatpak.Builder --ccache --force-clean flatpak build-aux/re.sonny.Workbench.Devel.json
0 commit comments