lamber-ken commented on a change in pull request #1412: [HUDI-504] Restructuring and auto-generation of docs URL: https://github.com/apache/incubator-hudi/pull/1412#discussion_r393427543
########## File path: .travis.yml ########## @@ -0,0 +1,42 @@ +language: ruby +rvm: + - 2.6.3 + +git: + clone: false + +env: + global: + - GIT_USER="CI BOT" + - GIT_EMAIL="[email protected]" + - GIT_REPO="apache" + - GIT_PROJECT="incubator-hudi" + - GIT_BRANCH="asf-site" + - DOCS_ROOT="`pwd`/${GIT_PROJECT}/docs" + +before_install: + - git config --global user.name ${GIT_USER} + - git config --global user.email ${GIT_EMAIL} + - git clone https://${GIT_TOKEN}@github.com/${GIT_REPO}/${GIT_PROJECT}.git + - cd ${GIT_PROJECT} && git checkout ${GIT_BRANCH} + - gem install bundler:2.0.2 + +script: + - pushd ${DOCS_ROOT} + - bundle install + - bundle update --bundler + - bundle exec jekyll build _config.yml --source . --destination _site + - popd + +after_success: Review comment: hi @vinothchandar > 1 How does this file interplay with .travis.yml on master.. per branch uses their own `.travis.yml` > i.e the change has been landed on asf-site already and this job is triggered after that? right, job will be triggered once merged. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
