Skip to content

Commit

Permalink
Merge pull request #70 from ayushjn20/develop
Browse files Browse the repository at this point in the history
Make updates to sync with the new project name
  • Loading branch information
agentmilindu authored May 15, 2019
2 parents 25d56bc + 6173cd4 commit e87b91d
Show file tree
Hide file tree
Showing 10 changed files with 107 additions and 80 deletions.
151 changes: 89 additions & 62 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dunner

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/b2275e331d2745dc9527d45efbbf2da2)](https://app.codacy.com/app/LeopardsLab/Dunner?utm_source=github.com&utm_medium=referral&utm_content=leopardslab/Dunner&utm_campaign=Badge_Grade_Dashboard)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/b2275e331d2745dc9527d45efbbf2da2)](https://app.codacy.com/app/Leopardslab/dunner?utm_source=github.com&utm_medium=referral&utm_content=leopardslab/dunner&utm_campaign=Badge_Grade_Dashboard)

Dunner is a task runner tool like Grunt but uses Docker images like CircleCI do. You can define tasks and steps of the tasks in your `.dunner.yaml` file and then run these steps with `Dunner do taskname`

Expand Down Expand Up @@ -41,11 +41,11 @@ This work is still in progress. See the development plan.

## Development Plan

### [`v0.1`](https://github.com/leopardslab/Dunner/milestone/2)
### [`v0.1`](https://github.com/leopardslab/dunner/milestone/2)
- [x] Ability to define set of tasks and steps and run the task
- [x] Mount current dir as a volume
- [x] Ability to pass arguments to tasks
### [`v1.0`](https://github.com/leopardslab/Dunner/milestone/1)
### [`v1.0`](https://github.com/leopardslab/dunner/milestone/1)
- [x] Ability to add ENV variables
- [x] Ability to define the sub-dir that should be mounted to the task containers
- [x] Ability to mount other dirs to the task containers
Expand All @@ -54,6 +54,6 @@ This work is still in progress. See the development plan.

# Guides

* [User Guide](https://github.com/leopardslab/Dunner/wiki/User-Guide)
* [Installation Guide](https://github.com/leopardslab/Dunner/wiki/Installation-Guide)
* [Developer Guide](https://github.com/leopardslab/Dunner/wiki/Developer-Guide)
* [User Guide](https://github.com/leopardslab/dunner/wiki/User-Guide)
* [Installation Guide](https://github.com/leopardslab/dunner/wiki/Installation-Guide)
* [Developer Guide](https://github.com/leopardslab/dunner/wiki/Developer-Guide)
2 changes: 1 addition & 1 deletion cmd/do.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"github.com/leopardslab/Dunner/pkg/dunner"
"github.com/leopardslab/dunner/pkg/dunner"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/docker/docker/client"
"github.com/leopardslab/Dunner/internal/logger"
"github.com/leopardslab/dunner/internal/logger"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"fmt"
"github.com/spf13/cobra"
G "github.com/leopardslab/Dunner/pkg/global"
G "github.com/leopardslab/dunner/pkg/global"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/leopardslab/Dunner/cmd"
G "github.com/leopardslab/Dunner/pkg/global"
"github.com/leopardslab/dunner/cmd"
G "github.com/leopardslab/dunner/pkg/global"
)

var version string
Expand Down
4 changes: 2 additions & 2 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (

"github.com/docker/docker/api/types/mount"
"github.com/joho/godotenv"
"github.com/leopardslab/Dunner/internal/logger"
"github.com/leopardslab/Dunner/pkg/docker"
"github.com/leopardslab/dunner/internal/logger"
"github.com/leopardslab/dunner/pkg/docker"
"github.com/spf13/viper"
yaml "gopkg.in/yaml.v2"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/docker/docker/client"
"github.com/docker/docker/pkg/jsonmessage"
"github.com/docker/docker/pkg/term"
"github.com/leopardslab/Dunner/internal/logger"
"github.com/leopardslab/dunner/internal/logger"
"github.com/spf13/viper"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/dunner/dunner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"sync"

"github.com/docker/docker/pkg/stdcopy"
"github.com/leopardslab/Dunner/internal/logger"
"github.com/leopardslab/Dunner/pkg/config"
"github.com/leopardslab/Dunner/pkg/docker"
"github.com/leopardslab/dunner/internal/logger"
"github.com/leopardslab/dunner/pkg/config"
"github.com/leopardslab/dunner/pkg/docker"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
Loading

0 comments on commit e87b91d

Please sign in to comment.