-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bd49fb
commit ee7f8f7
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,17 @@ jobs: | |
run: | | ||
ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa [email protected] 'bash -s' <<'EOF' | ||
#!/bin/bash | ||
cd /home/brodey/scuda-latest | ||
cd /home/brodey/scuda-latest | ||
ls | ||
s server & | ||
server_pid=$! | ||
sleep 5 | ||
export SCUDA_SERVER=0.0.0.0 | ||
s test && echo "Tests passed successfully!" || (echo "Tests failed. Exiting..."; exit 1) | ||
EOF | ||
- name: Disconnect Tailscale | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters