feature/gitea-integration #10

Merged
kjuulh merged 10 commits from feature/gitea-integration into v0.1 2022-09-18 00:10:44 +02:00
5 changed files with 32 additions and 0 deletions
Showing only changes of commit e3a672f9f7 - Show all commits

View File

@ -9,3 +9,9 @@ vars:
scripts: scripts:
push_github: push_github:
type: shell type: shell
run_server:
type: shell
run_client:
type: shell
run:
type: shell

View File

@ -21,6 +21,7 @@
- [x] Setup a way to choose actions and predicates - [x] Setup a way to choose actions and predicates
- [x] Allow instantiation of actions, kraken template repo etc. - [x] Allow instantiation of actions, kraken template repo etc.
- [ ] Implement docker action - [ ] Implement docker action
- [ ] Providing query results
- [ ] Create pr for gitea provider - [ ] Create pr for gitea provider
- [ ] Think about some sort of isolation - [ ] Think about some sort of isolation
- [ ] Create CLI to trigger action - [ ] Create CLI to trigger action

15
scripts/run.sh Executable file
View 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
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -e
go run cmd/kraken/kraken.go process

5
scripts/run_server.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -e
go run cmd/server/server.go start