Skip to content

Commit

Permalink
Deploy from Travis build 78 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Aug 26, 2019
0 parents commit 7e5ae4d
Show file tree
Hide file tree
Showing 302 changed files with 41,628 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
root = true

[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
indent_size = 2
indent_style = space
max_line_length = 100 # Please keep this in sync with bin/lesson_check.py!

[*.r]
max_line_length = 80

[*.py]
indent_size = 4
indent_style = space
max_line_length = 79

[*.sh]
end_of_line = lf

[Makefile]
indent_style = tab
48 changes: 48 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
Abigail Cabunoc Mayes <abigail.cabunoc@gmail.com>
Abigail Cabunoc Mayes <abigail.cabunoc@gmail.com> <abigail.cabunoc@oicr.on.ca>
Andrew Lonsdale <andrew.lonsdale@lonsbio.com.au>
Benjamin D. Best <bbest@nceas.ucsb.edu>
Bernhard Konrad <bernhard.konrad@gmail.com>
Bill Mills <mills.wj@gmail.com>
Conrad Leonard <conrad.leonard@hotmail.com>
David J. Harris <harry491@gmail.com> <davharris@users.noreply.github.com>
Erin Becker <erinstellabecker@gmail.com>
Evan P. Williamson <evanpeterw@gmail.com>
François Michonneau <francois.michonneau@gmail.com>
Greg Wilson <gvwilson@software-carpentry.org> <gvwilson@third-bit.com>
Hannah Kronenberg <hannah.kronenberg@gmail.com>
Helen Lindsay <helen.lindsay@uzh.ch>
Henry Senyondo <henrykironde@gmail.com>
Ivan Gonzalez <iglpdc@gmail.com> <iglpdc@users.noreply.github.com>
James Allen <james@sharelatex.com> <jamesallen0108@gmail.com>
Jeffrey Arnold <jeffrey.arnold@gmail.com>
Jeffrey Oliver <jcoliver@email.arizona.edu>
Jeffrey Oliver <jeffrey.oliver@science.oregonstate.edu>
Katherine Koziar <katherine.koziar@ucr.edu>
Kathe Todd-Brown <ktoddbrown@gmail.com>
Kieran Samuk <ksamuk@gmail.com>
Kyriakos Chatzidimitriou <kyrcha@gmail.com>
Lachlan Deer <lachlan.deer@uzh.ch>
Lisa Breckels <lisa.m.simp@gmail.com>
Luke W. Johnston <lwjohnst@gmail.com> <lwjohnst86@users.noreply.github.com>
Martin J. Hadley <martinjohnhadley@gmail.com>
Mateusz Kuzak <mateusz.kuzak@gmail.com>
Maxim Belkin <maxim.belkin@gmail.com> <maxim-belkin@users.noreply.github.com>
Mik Black <blackmik@gmail.com>
Mike Jackson <m.jackson@software.ac.uk> <michaelj@epcc.ed.ac.uk>
Noel Faux <nfaux@unimelb.edu.au> <noel.faux@gmail.com>
Nora Mitchell <nora.c.mitchell@gmail.com>
Pip Griffin <pip.griffin@gmail.com>
Raniere Silva <raniere@rgaiacs.com> <ra092767@ime.unicamp.br>
Raniere Silva <raniere@rgaiacs.com> <raniere@ime.unicamp.br>
Rebecca Lange <becca.lange84@gmail.com>
Rémi Emonet <remi@heeere.com> <remi.emonet@reverse--com.heeere>
Rémi Emonet <remi@heeere.com> <twitwi@users.noreply.github.com>
Robert Bagchi <robert.bagchi@uconn.edu>
Robert McDonald <rmcd1024@gmail.com>
Robert Syme <rob.syme@gmail.com>
Timothée Poisot <t.poisot@gmail.com> <tim@poisotlab.io>
Vince Polito <vince4223@gmail.com>
Willem Ligtenberg <willem@wligtenberg.nl>
Yuka Takemon <yuka.takemon@gmail.com>
zz-Daniel <clone@myself.com>
46 changes: 46 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Default configuration for use with tic package
# Usually you shouldn't need to change the first part of the file

# DO NOT CHANGE THE CODE BELOW
before_install:
- sudo apt-get install libgit2-dev
- rvm install 2.5.3
- rvm 2.5.3 do ruby -S gem install jekyll
- sudo apt-get install -y linkchecker
- mkdir -p ~/.linkchecker
- echo -e '[checking]\nsslverify=0' > ~/.linkchecker/linkcheckerrc
- R -q -e 'install.packages(c("remotes", "curl")); remotes::install_github("ropenscilabs/tic"); tic::prepare_all_stages(); tic::before_install()'
install: R -q -e 'tic::install()'
after_install: R -q -e 'tic::after_install()'
before_script: R -q -e 'tic::before_script()'
script: R -q -e 'tic::script()'
after_success: R -q -e 'tic::after_success()'
after_failure: R -q -e 'tic::after_failure()'
before_deploy: R -q -e 'tic::before_deploy()'
deploy:
provider: script
script: R -q -e 'tic::deploy()'
on:
all_branches: true
after_deploy: R -q -e 'tic::after_deploy()'
after_script: R -q -e 'tic::after_script()'
# DO NOT CHANGE THE CODE ABOVE

# Custom parts:

# Header
language: r
sudo: false
dist: trusty
cache: packages
latex: false

#env
env:
global:
- _R_CHECK_FORCE_SUGGESTS_=false
- MAKEFLAGS="-j 2"

#services
services:
6 changes: 6 additions & 0 deletions .update-copyright.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[project]
vcs: Git

[files]
authors: yes
files: no
Loading

0 comments on commit 7e5ae4d

Please sign in to comment.