add more cuddle
This commit is contained in:
parent
9ad10d07be
commit
e3a672f9f7
@ -9,3 +9,9 @@ vars:
|
||||
scripts:
|
||||
push_github:
|
||||
type: shell
|
||||
run_server:
|
||||
type: shell
|
||||
run_client:
|
||||
type: shell
|
||||
run:
|
||||
type: shell
|
||||
|
@ -21,6 +21,7 @@
|
||||
- [x] Setup a way to choose actions and predicates
|
||||
- [x] Allow instantiation of actions, kraken template repo etc.
|
||||
- [ ] Implement docker action
|
||||
- [ ] Providing query results
|
||||
- [ ] Create pr for gitea provider
|
||||
- [ ] Think about some sort of isolation
|
||||
- [ ] Create CLI to trigger action
|
||||
|
15
scripts/run.sh
Executable file
15
scripts/run.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
run_server="cuddle_cli x run_server"
|
||||
|
||||
$run_server &
|
||||
|
||||
sleep 1s
|
||||
|
||||
cuddle_cli x run_client
|
||||
|
||||
sleep 5s
|
||||
|
||||
kill %1
|
5
scripts/run_client.sh
Executable file
5
scripts/run_client.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
go run cmd/kraken/kraken.go process
|
5
scripts/run_server.sh
Executable file
5
scripts/run_server.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
go run cmd/server/server.go start
|
Loading…
Reference in New Issue
Block a user