Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Build Backend
on:
push:
branches: main
paths:
- 'backend/**'
pull_request:
branches: main
workflow_dispatch:
jobs:
build:
Expand Down
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
"gdb-remote steamdeck:17777",
"process handle SIGPIPE -n true -p true -s false"
]
},
{
"name": "Launch (lldb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"miDebuggerPath": "/usr/bin/lldb"
}
]
}
10 changes: 3 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
],
"group": "none",
"dependsOn": [
"rust: cross build SteamDeck",
],
"rust: cross build SteamDeck"
]
},
{
"label": "rust: cross build SteamDeck",
Expand Down Expand Up @@ -94,7 +94,7 @@
"type": "shell",
"group": "none",
"dependsOn": [
"buildfrontend",
"buildfrontend"
],
"command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' dist deck@${config:deckip}:${config:deckdir}/homebrew/plugins/ControllerTools && DECKIP=${config:deckip} node scripts/reload_frontend.js",
"problemMatcher": []
Expand All @@ -104,10 +104,6 @@
"detail": "Deploy dev plugin to deck",
"type": "shell",
"group": "none",
"dependsOn": [
"createfolders",
"chmodfolders"
],
"command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' build/ deck@${config:deckip}:${config:deckdir}/homebrew/plugins/ControllerTools",
"problemMatcher": []
},
Expand Down
Loading