diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 01:48:11 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 01:48:11 +0000 |
commit | adb9b3fe169a92ea2da7b8c804c8b91f966c21a4 (patch) | |
tree | fe340f4de0afa6763e220194d2e6bea3366b4c71 /.travis.yml | |
parent | bind-mounts: rename the file (diff) | |
download | jekyll-theme-adb9b3fe169a92ea2da7b8c804c8b91f966c21a4.tar.gz jekyll-theme-adb9b3fe169a92ea2da7b8c804c8b91f966c21a4.zip |
remove everything except Jekyll theme stuff
I tagged the previous commit to explain what's going on.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 704ca11..0000000 --- a/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -os: linux -dist: bionic -language: ruby - -# Travis doesn't build gh-pages by default: -# https://docs.travis-ci.com/user/customizing-the-build/#building-specific-branches -branches: - only: - - gh-pages - - /.*/ - -jobs: - fast_finish: true - - include: - - stage: Build - name: Build using Bundler - install: bundle install --jobs=3 --retry=3 - script: bundle exec jekyll build --config _config.yml,_config_dev.yml --drafts - - name: Build using latest github-pages - install: - # `jekyll build` seems to be using Bundler if Gemfile is present: - - rm -f -- Gemfile Gemfile.lock - - gem install github-pages - script: jekyll build - - stage: Verify - name: Check integrity - install: bundle install --jobs=3 --retry=3 - script: - - nohup bundle exec jekyll serve --config _config.yml,_config_dev.yml --drafts & - - sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ |