Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make updates to sync with the new project name #70

Merged
merged 1 commit into from
May 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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