Skip to content

Commit 3c7d28d

Browse files
committed
Add Travis CI config
1 parent f92985d commit 3c7d28d

File tree

6 files changed

+19
-2
lines changed

6 files changed

+19
-2
lines changed

.ci/url_ignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/tree/

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: ruby
2+
before_install:
3+
- gem update --system # necessary, see https://bundler.io/blog/2019/05/14/solutions-for-cant-find-gem-bundler-with-executable-bundle.html
4+
before_script:
5+
- gem install html-proofer
6+
script:
7+
- bundle exec jekyll build
8+
- >-
9+
htmlproofer ./_site
10+
--check-html
11+
--check-favicon
12+
--enforce-https
13+
--check-external-hash
14+
--check-img-http
15+
--url-ignore $(paste -sd ',' < .ci/url_ignore)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Adversarial Example Defenses
1+
# Adversarial Example Defenses [[![Build Status](https://travis-ci.com/robust-ml/robust-ml.github.io.svg?branch=master)](https://travis-ci.com/robust-ml/robust-ml.github.io)]
22

33
A catalog of defenses against adversarial examples, paired with attacks that
44
break them (where applicable).

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ exclude:
1919
- Gemfile
2020
- Gemfile.lock
2121
- README.md
22+
- vendor
2223

2324
plugins_dir:
2425
- "jekyll-github-metadata"

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
6666
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
6767
<script type="text/javascript" src="https://cdn.datatables.net/v/bs4/dt-1.10.18/fh-3.1.4/r-2.2.2/datatables.min.js" crossorigin="anonymous"></script>
68-
<script type="text/javascript" src="/vendor/js/dataTables.rowsGroup.js"></script>
68+
<script type="text/javascript" src="/js/dataTables.rowsGroup.js"></script>
6969
<nav class="navbar navbar-expand-sm navbar-dark bg-dark mb-4">
7070
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
7171
<span class="navbar-toggler-icon"></span>

0 commit comments

Comments
 (0)