mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 04:22:50 +02:00
35 lines
599 B
JSON
35 lines
599 B
JSON
{
|
|
"targets": {
|
|
"lib": {
|
|
|
|
"buildenv": "docker:devkitpro/devkita64",
|
|
|
|
"buildcmd": [
|
|
"sudo -E make -j${PARALLEL} -C nx install"
|
|
]
|
|
},
|
|
|
|
"docs": {
|
|
// This target build and upload docs and will be trigged from doozer's CD script
|
|
"auto": false,
|
|
|
|
"buildenv": "xenial-amd64",
|
|
"builddeps": [
|
|
"doxygen"
|
|
],
|
|
|
|
"buildcmd": [
|
|
"cd nx", "doxygen"
|
|
],
|
|
|
|
"artifacts": [{
|
|
"source": "nx/docs/html",
|
|
"destination": {
|
|
"type": "git",
|
|
"branch": "gh-pages"
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
}
|