X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/db166b9539a0f18621e2c980137d082357b1a680..cc810d29fd64e1005dd7829640ea0fb9f4b638cd:/doc/Rakefile diff --git a/doc/Rakefile b/doc/Rakefile index 1390aa0e9c..89454940c7 100644 --- a/doc/Rakefile +++ b/doc/Rakefile @@ -51,20 +51,22 @@ file ["install/new_cluster_checklist_Azure.xlsx", "install/new_cluster_checklist end file "sdk/python/arvados/index.html" do |t| - if ENV['NO_SDK'] || File.exists?("no-sdk") + if ENV['NO_SDK'] || File.exist?("no-sdk") next end `which pdoc` if $? == 0 - STDERR.puts `pdoc --html -o sdk/python ../sdk/python/arvados/ 2>&1` - raise if $? != 0 + raise unless system("python3", "setup.py", "build", + chdir: "../sdk/python", out: :err) + raise unless system("pdoc", "--html", "-o", "sdk/python", "../sdk/python/build/lib/arvados/", + out: :err) else puts "Warning: pdoc3 not found, Python documentation will not be generated".colorize(:light_red) end end file "sdk/R/arvados/index.html" do |t| - if ENV['NO_SDK'] || File.exists?("no-sdk") + if ENV['NO_SDK'] || File.exist?("no-sdk") next end `which R` @@ -130,7 +132,7 @@ EOF end file "sdk/java-v2/javadoc/index.html" do |t| - if ENV['NO_SDK'] || File.exists?("no-sdk") + if ENV['NO_SDK'] || File.exist?("no-sdk") next end `which java`