An open API service indexing awesome lists of open source software.

https://github.com/junland/conveyor

Minimal Unix-like CI Runner
https://github.com/junland/conveyor

Last synced: 5 months ago
JSON representation

Minimal Unix-like CI Runner

Awesome Lists containing this project

README

          

# conveyor
Minimal Unix-like CI Runner

## REST API

```
POST /job -- Queue a job
```

```
GET /job/ -- Get status of job.
```

```
DELETE /job/ -- Stop / remove job from queue.
```

```
POST /job/ -- Restart / reinsert job into queue.
```

```
GET /job//log -- Get log file of job.
```

## Testing

```
curl -H "Content-Type: application/json" -d '{"name":"frontend","commands":["echo 1","echo 2","touch file_$RANDOM"]}' http://localhost:8080/job
```