Pārlūkot izejas kodu

latex returns error code on appveyor; disable temporarily

Julius Pfrommer 6 gadi atpakaļ
vecāks
revīzija
9703c27a52
1 mainītis faili ar 18 papildinājumiem un 18 dzēšanām
  1. 18 18
      tools/appveyor/build.ps1

+ 18 - 18
tools/appveyor/build.ps1

@@ -10,24 +10,24 @@ Copy-Item LICENSE pack
 Copy-Item AUTHORS pack
 Copy-Item README.md pack
 
-Write-Host -ForegroundColor Green "`n###################################################################"
-Write-Host -ForegroundColor Green "`n##### Building Documentation on $env:CC_NAME #####`n"
-New-Item -ItemType directory -Path build
-cd build
-& cmake -DMIKTEX_BINARY_PATH=c:\miktex\texmfs\install\miktex\bin -DCMAKE_BUILD_TYPE=Release -DUA_COMPILE_AS_CXX:BOOL=$env:FORCE_CXX -DUA_BUILD_EXAMPLES:BOOL=OFF -G"$env:CC_NAME" ..
-& cmake --build . --target doc_latex
-if ($LASTEXITCODE -and $LASTEXITCODE -ne 0) {
-	Write-Host -ForegroundColor Red "`n`n*** Make doc_latex. Exiting ... ***"
-	exit $LASTEXITCODE
-}
-& cmake --build . --target doc_pdf
-if ($LASTEXITCODE -and $LASTEXITCODE -ne 0) {
-	Write-Host -ForegroundColor Red "`n`n*** Make doc_pdf. Exiting ... ***"
-	exit $LASTEXITCODE
-}
-cd ..
-Move-Item -Path "build\doc_latex\open62541.pdf" -Destination pack\
-Remove-Item -Path build -Recurse -Force
+# Write-Host -ForegroundColor Green "`n###################################################################"
+# Write-Host -ForegroundColor Green "`n##### Building Documentation on $env:CC_NAME #####`n"
+# New-Item -ItemType directory -Path build
+# cd build
+# & cmake -DMIKTEX_BINARY_PATH=c:\miktex\texmfs\install\miktex\bin -DCMAKE_BUILD_TYPE=Release -DUA_COMPILE_AS_CXX:BOOL=$env:FORCE_CXX -DUA_BUILD_EXAMPLES:BOOL=OFF -G"$env:CC_NAME" ..
+# & cmake --build . --target doc_latex
+# if ($LASTEXITCODE -and $LASTEXITCODE -ne 0) {
+# 	Write-Host -ForegroundColor Red "`n`n*** Make doc_latex. Exiting ... ***"
+# 	exit $LASTEXITCODE
+# }
+# & cmake --build . --target doc_pdf
+# if ($LASTEXITCODE -and $LASTEXITCODE -ne 0) {
+# 	Write-Host -ForegroundColor Red "`n`n*** Make doc_pdf. Exiting ... ***"
+# 	exit $LASTEXITCODE
+# }
+# cd ..
+# Move-Item -Path "build\doc_latex\open62541.pdf" -Destination pack\
+# Remove-Item -Path build -Recurse -Force
 
 Write-Host -ForegroundColor Green "`n###################################################################"
 Write-Host -ForegroundColor Green "`n##### Testing $env:CC_NAME #####`n"