We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d29757d commit 3257391Copy full SHA for 3257391
docker-compose.yml
@@ -0,0 +1,9 @@
1
+services:
2
+ gdbuddy:
3
+ image: gdbuddy:latest
4
+ environment:
5
+ RUNNER_ORG:
6
+ RUNNER_TOKEN:
7
+ privileged: true
8
+ devices:
9
+ - "/dev/ttyACM0:/dev/ttyACM0"
entrypoint.sh
@@ -1,11 +1,7 @@
#/bin/sh
-echo $RUNNER_TOKEN
-
cd /runner && \
-./config.sh --url https://github.com/allegheny-college-cmpsc-200-fall-2024 --token $RUNNER_TOKEN &&
+./config.sh --url $RUNNER_ORG --token $RUNNER_TOKEN &&
./run.sh &
/tools/openocd/src/openocd -c "gdb_port 50000" -c "tcl_port 50001" -c "telnet_port 50002" -s /tools/openocd/tcl -f /tools/openocd-helpers.tcl -f interface/cmsis-dap.cfg -f target/rp2040.cfg -c "adapter speed 5000"
10
11
-# /bin/bash
0 commit comments