Skip to content

Commit

Permalink
Disable sphinx for aarch_64 (line#1071)
Browse files Browse the repository at this point in the history
Until we actually upload the binary since:

1) A simple `assemble` task fails for osx users
2) Now the CI is failing as well
  • Loading branch information
jrhee17 authored Dec 5, 2024
1 parent 32f958e commit bebcfb7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions site/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ if (project.hasProperty("noSite")) {

apply plugin: "kr.motd.sphinx"

def osdetector = project.rootProject.osdetector
def skipSphinx = osdetector.os == 'osx' && osdetector.arch == 'aarch_64'

sphinx {
group = 'Documentation'
description = 'Generates the Sphinx web site.'
sourceDirectory "${project.projectDir}/src/sphinx"
skip = skipSphinx
}

task javadoc(type: Javadoc,
Expand Down

0 comments on commit bebcfb7

Please sign in to comment.