forked from mitou/jr.mitou.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
45 lines (38 loc) · 1.2 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
task default: 'test'
# Upsert individual project page by data
desc 'Upsert project page by project data'
task :upsert_project_pages_by_data do
ruby "tasks/upsert_project_pages_by_data.rb"
end
# cf. GitHub - gjtorikian/html-proofer
# https://github.com/gjtorikian/html-proofer
require 'html-proofer'
task test: [:build] do
require './tests/custom_checks'
options = {
checks: ['Links', 'Images', 'Scripts', 'OpenGraph', 'Favicon', 'JSONs'],
allow_hash_href: true,
disable_external: ENV['TEST_EXTERNAL_LINKS'] != 'true',
enforce_https: true,
# NOTE: Ignore file, URL, and response as follows
ignore_files: [
/google(.*)\.html/,
],
ignore_urls: [
# Ignore domains that need to access by HTTP not HTTPS.
/ecomaki.com/,
/iql-lab.de/,
/nhiro.org/,
/twitter.com/, # Skip testing Twitter URLs
],
#ignore_status_codes: [0, 500, 999],
}
HTMLProofer.check_directory('_site', options).run
end
# Enable 'build' to flush cache files via 'clean'
task build: [:clean] do
system 'JEKYLL_ENV=test bundle exec jekyll build' unless ENV['SKIP_BUILD'] == 'true'
end
task :clean do
system 'bundle exec jekyll clean' unless ENV['SKIP_BUILD'] == 'true'
end