Skip to content

Commit 9cbb032

Browse files
authored
Remove last Godeps, update Gogradle for gomod and Ansible setup (#496)
* Remove last Godeps, update Gogradle for gomod and Ansible setup * Remove last Godeps, update Gogradle for gomod and Ansible setup * Add dependson clause to build i18n (i18n_resources.go) before the goBuild task * Update build.gradle to use Exec tasks for go-bindata and i18n * Update build.gradle to use Exec tasks for go-bindata and i18n * Task goGetBinData for i18n support must run as a deps. of goPrepare not goBuild * Cleanup build.gradle; remove old tasks * Fix golint command * Fix golint command * Fix golint command * Use latest go.mod * Use latest go.mod * Use latest go.mod * Remove goVet and gofmt tasks as they use older go conventions * Remove goVet and gofmt tasks as they use older go conventions * Remove failing localhost/SDK scala tests * Try some regex fixes for scala SDK tests * Fix regex for SDK scala tests; Remove govendor from README * Revamp README to reflect current Go mod and Gradle build instructions * Revamp README to reflect current Go mod and Gradle build instructions * Revamp README to reflect current Go mod and Gradle build instructions * Revamp README to reflect current Go mod and Gradle build instructions
1 parent e3f41f9 commit 9cbb032

File tree

10 files changed

+337
-334
lines changed

10 files changed

+337
-334
lines changed

.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
javascript/
1+
2+
# Built or generated files
3+
openwhisk-cli
24
wsk
35
wsk.exe
46
scripts
5-
Godeps/_workspace
7+
Godeps/
68
*~
79

810
# IDE-related exclusions
11+
/.vscode/
912
.idea/
1013
*.iml
1114

@@ -20,3 +23,9 @@ wski18n/i18n_resources.go
2023
bin/
2124
tests/build/
2225
tests/out/
26+
27+
# Scala
28+
/.metals/
29+
30+
# Misc
31+
javascript/

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ install:
5252
before_script:
5353
- cd $TRAVIS_BUILD_DIR
5454
- ./gradlew --console=plain checkScalafmtAll
55-
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/)
55+
- GO_FILES=$(find . -iname '*.go' -type f)
5656
- test -z "$(gofmt -s -l $(echo $GO_FILES))"
5757
- cd $TRAVIS_BUILD_DIR/..
5858
- git clone https://github.com/apache/openwhisk-utilities.git

Godeps/Godeps.json

Lines changed: 0 additions & 154 deletions
This file was deleted.

Godeps/Readme

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)