Generate Doxygen files and upload to gh-pages branch

This commit is contained in:
Andreas Smas 2018-02-12 20:20:42 -08:00
parent 4efcc5b439
commit e8683f8709

View File

@ -18,6 +18,28 @@
"git clone --depth 1 https://github.com/switchbrew/switch-examples", "git clone --depth 1 https://github.com/switchbrew/switch-examples",
"DEVKITPRO=${DEVKITPATH} make -C switch-examples/" "DEVKITPRO=${DEVKITPATH} make -C switch-examples/"
] ]
},
"docs": {
// Only invoke docs target when building from master branch
"branch": "master",
"buildenv": "xenial-amd64",
"builddeps": [
"doxygen"
],
"buildcmd": [
"cd nx", "doxygen"
],
"artifacts": [{
"source": "nx/docs/html",
"destination": {
"type": "git",
"branch": "gh-pages"
}
}]
} }
} }
} }