-
Notifications
You must be signed in to change notification settings - Fork 1
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
create _travis.yml #2
Comments
Hey @eqmh : so I'm looking at the latest travis build and it looks like the |
Yep, that got us to the next step. Now it is failing at the github push because of the auth token. Now we just need to set up the github auth stuff explained in these notes. Not sure if that is in travis-ci settings or maybe something more complicated like encryption keys. |
Yep, per Encryption keys - Travis CI, you'll need to install the travis Ruby command line to encrypt a variable on your local machine like: # install Ruby command
gem install travis
# encrypt github password for upload
travis encrypt gh_passwd="secretvalue" Check out this example: setup Travis continuous integration (CI) to update daily · Issue #2 · SustainSB/sustainsb.github.io |
thanks, @bbest! Just a quick note for future reference: I solved this using: Just running gem install travis was not working for me. I got the key after running travis encrypt SOMEVAR="secretvalue" and replaced the one that was in the .travis.yml. I think we have a new set of issues with Travis. |
The authentication is still failing in travis:
Did you do literally |
Travis CI seems to be working now. Closing this one out |
The ultimate plan here is to get Travis CI to build the Rmd into html, right?
I am not exactly certain how to set up the _travis.yml to do that but have a rough idea. Have you done this on another repo, @bbest ? It would be great to see an example.
The text was updated successfully, but these errors were encountered: