Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfx committed May 14, 2022
1 parent 154fb8a commit 3d3b722
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 15 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ build: vendor
@echo "✓ Building source code with go build ..."
@go build -mod vendor

snapshot:
@echo "✓ Building dev snapshot"
@goreleaser build --snapshot --rm-dist --single-target

vendor:
@echo "✓ Filling vendor folder with library code ..."
@go mod vendor
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ What works:
What doesn't work:

* Everything else.

This project reuses some code from Databricks Terraform Provider
10 changes: 8 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ module github.com/databricks/bricks
go 1.16

require (
github.com/databrickslabs/terraform-provider-databricks v0.5.7
github.com/spf13/cobra v1.4.0
github.com/databrickslabs/terraform-provider-databricks v0.5.7 // Apache 2.0
gopkg.in/ini.v1 v1.66.4 // Apache 2.0
github.com/ghodss/yaml v1.0.0 // MIT + NOTICE
github.com/manifoldco/promptui v0.9.0 // BSD-3-Clause license
github.com/mitchellh/go-homedir v1.1.0 // MIT
github.com/spf13/cobra v1.4.0 // Apache 2.0
github.com/stretchr/testify v1.7.1 // MIT
github.com/whilp/git-urls v1.0.0 // MIT
)
47 changes: 36 additions & 11 deletions go.sum

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
package main

import "github.com/databricks/bricks/cmd"
import (
"github.com/databricks/bricks/cmd/root"
_ "github.com/databricks/bricks/cmd/fs"
_ "github.com/databricks/bricks/cmd/init"
_ "github.com/databricks/bricks/cmd/launch"
_ "github.com/databricks/bricks/cmd/test"
)

func main() {
cmd.Execute()
root.RootCmd.Execute()
}
5 changes: 5 additions & 0 deletions sandbox/databricks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: dev
profile: demo
isolation: none
dev_cluster:
cluster_name: Shared Autoscaling
File renamed without changes.

0 comments on commit 3d3b722

Please sign in to comment.