-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Fixing Travis build #84
base: gh-pages
Are you sure you want to change the base?
Fixing Travis build #84
Conversation
- This is mostly to prevent Travis build errors. - Discussed in carpentries-incubator#80.
- Removed the 'make lesson-check-all' command. - This command requires the '_includes/links.md', which is not present in the repository. - This is due to the remote theme being used, which dispenses the need of an '_includes/' directory. - Discussed in carpentries-incubator#80.
- Use correct version of Ruby. - Discussed in carpentries-incubator#80.
- Revert previous commit (remove --always-make flag). - Add bundler to gem install command. - Discussed in carpentries-incubator#80.
- Match the Makefile from the Python Inflammation lesson. - Discussed in carpentries-incubator#84.
I updated the Makefile by matching the I would further suggest removing the R dependencies in the |
I tagged in @fmichonneau because this file isn't a part of the lesson itself. |
As a side note: I did notice similar problems in other Carpentries repositories, e.g. this PR in the Python Ecology Lesson and this commit in the Inflammation lesson. In the former one, the build fails upon trying to install R dependencies (fixed by 77b786f in this PR), and in the latter, all tests pass, except the Travis build. |
Hi,
This PR is an attempt to fix the Travis build process. Changes were originally being made in #80, but I decided to create a separate PR just for them (and revert them in the aforementioned PR).
Summary of changes:
.travis.yml
Gemfile
to match latest Carpentries lessonsIf this is merged, hopefully future PRs won't fail the Travis build.
Best,
Vini