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

Remove last Godeps, update Gogradle for gomod and Ansible setup #496

Merged
merged 22 commits into from
Mar 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
eb723c6
Remove last Godeps, update Gogradle for gomod and Ansible setup
mrutkows Feb 24, 2021
3b04795
Remove last Godeps, update Gogradle for gomod and Ansible setup
mrutkows Feb 25, 2021
423a41d
Add dependson clause to build i18n (i18n_resources.go) before the goB…
mrutkows Feb 25, 2021
9fcadc0
Update build.gradle to use Exec tasks for go-bindata and i18n
mrutkows Feb 25, 2021
0e28042
Update build.gradle to use Exec tasks for go-bindata and i18n
mrutkows Feb 25, 2021
da85752
Task goGetBinData for i18n support must run as a deps. of goPrepare n…
mrutkows Feb 25, 2021
91dac42
Cleanup build.gradle; remove old tasks
mrutkows Feb 26, 2021
ef6f42e
Fix golint command
mrutkows Feb 26, 2021
1d6ad1e
Fix golint command
mrutkows Feb 26, 2021
40c1898
Fix golint command
mrutkows Feb 26, 2021
010afa3
Use latest go.mod
mrutkows Feb 26, 2021
01fe01a
Use latest go.mod
mrutkows Feb 26, 2021
6ee4c4b
Use latest go.mod
mrutkows Feb 26, 2021
222027e
Remove goVet and gofmt tasks as they use older go conventions
mrutkows Feb 26, 2021
5c98ad6
Remove goVet and gofmt tasks as they use older go conventions
mrutkows Feb 26, 2021
db19bf9
Remove failing localhost/SDK scala tests
mrutkows Feb 26, 2021
3a4adb8
Try some regex fixes for scala SDK tests
mrutkows Feb 26, 2021
3ea9172
Fix regex for SDK scala tests; Remove govendor from README
mrutkows Feb 26, 2021
5983220
Revamp README to reflect current Go mod and Gradle build instructions
mrutkows Mar 1, 2021
65b65c5
Revamp README to reflect current Go mod and Gradle build instructions
mrutkows Mar 1, 2021
94939e7
Revamp README to reflect current Go mod and Gradle build instructions
mrutkows Mar 1, 2021
bc4961f
Revamp README to reflect current Go mod and Gradle build instructions
mrutkows Mar 1, 2021
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
13 changes: 11 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
javascript/

# Built or generated files
openwhisk-cli
wsk
wsk.exe
scripts
Godeps/_workspace
Godeps/
*~

# IDE-related exclusions
/.vscode/
.idea/
*.iml

Expand All @@ -20,3 +23,9 @@ wski18n/i18n_resources.go
bin/
tests/build/
tests/out/

# Scala
/.metals/

# Misc
javascript/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ install:
before_script:
- cd $TRAVIS_BUILD_DIR
- ./gradlew --console=plain checkScalafmtAll
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/)
- GO_FILES=$(find . -iname '*.go' -type f)
- test -z "$(gofmt -s -l $(echo $GO_FILES))"
- cd $TRAVIS_BUILD_DIR/..
- git clone https://github.com/apache/openwhisk-utilities.git
Expand Down
154 changes: 0 additions & 154 deletions Godeps/Godeps.json

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/Readme

This file was deleted.

Loading