-
Notifications
You must be signed in to change notification settings - Fork 277
Add Travis CI integration #162
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
Conversation
Codecov Report
@@ Coverage Diff @@
## development #162 +/- ##
===============================================
- Coverage 63.54% 63.45% -0.09%
===============================================
Files 189 189
Lines 34417 34414 -3
===============================================
- Hits 21871 21839 -32
- Misses 12029 12067 +38
+ Partials 517 508 -9
Continue to review full report at Codecov.
|
gunnsth
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great. A few comments.
adrg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 0 of 2 files reviewed, 4 unresolved discussions (waiting on @gunnsth)
.travis/build_examples.sh, line 12 at r1 (raw file):
Previously, gunnsth (Gunnsteinn Hall) wrote…
I noticed in the build output there was:
$ ./.travis/build_examples.sh Cloning into '/home/travis/gopath/src/github.com/unidoc/unipdf-examples'... remote: Enumerating objects: 52, done. remote: Counting objects: 100% (52/52), done. remote: Compressing objects: 100% (44/44), done. Receiving objects: 63% (remote: Total 928 (delta 16), reused 27 (delta 8), pack-reused 876 Receiving objects: 100% (928/928), 3.88 MiB | 14.76 MiB/s, done. Resolving deltas: 100% (601/601), done. Already on 'v3' Your branch is up to date with 'origin/v3'. Building to bin/ folder go: finding github.com/youtube/vitess v2.1.1+incompatible go: finding github.com/wcharczuk/go-chart v2.0.1+incompatible go: finding github.com/miekg/pkcs11 v1.0.2 go: finding github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b go: finding github.com/blend/go-sdk v2.0.0+incompatible go: finding github.com/ThalesIgnite/crypto11 v0.1.0 go: finding github.com/unidoc/unipdf/v3 v3.1.1 go: downloading github.com/unidoc/unipdf/v3 v3.1.1 ...which indicates it was downloading the unipdf from the go.mod file.
It might be necessary to add a replace directive to the go.mod file, something like
replace github.com/unidoc/unipdf/v3 => /path/to/github.com/unidoc/unipdfThis can also be added with the go command line tool (see
go help mod edit).
Done.
Related to #145
This change is