mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-14 16:09:27 +01:00
32 lines
653 B
YAML
32 lines
653 B
YAML
sudo: required
|
|
|
|
language: python
|
|
python:
|
|
- "3.5"
|
|
|
|
# install Java 8 as required by vnu.jar
|
|
before_install:
|
|
- sudo rm -f /etc/profile.d/jdk.sh
|
|
- sudo apt-get -y update
|
|
- sudo apt-get -y install oracle-java8-installer
|
|
- sudo update-java-alternatives -s java-8-oracle
|
|
- gem install github-pages
|
|
|
|
install:
|
|
- pip install html5validator
|
|
|
|
script:
|
|
- jekyll build --drafts --profile
|
|
- html5validator --root _site/ --also-check-css --blacklist r or
|
|
|
|
env:
|
|
global:
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
# To be encrypted if issues arise
|
|
- "ircs://chat.freenode.net:6697/##Mikaela"
|
|
use_notice: true
|