Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer
Submodule .devcontainer updated 55 files
+4 −4 .github/wf-templates/xpbuild.yml
+1 −1 .github/wf-templates/xprelease.yml
+9 −9 .github/workflows/README.md
+14 −4 .github/workflows/build-linux.yml
+14 −4 .github/workflows/build-macos.yml
+14 −4 .github/workflows/build-windows.yml
+5 −5 .github/workflows/release-from-build.yml
+3 −3 README.md
+0 −40 cmake/Findexdlpro.cmake
+0 −78 cmake/Findwebpro.cmake
+77 −67 cmake/README.md
+0 −17 cmake/cmswxconfig.cmake
+18 −2 cmake/deps.cmake
+9 −9 cmake/deps.dot
+ cmake/deps.png
+0 −0 cmake/legacy/Findscript.cmake.in
+0 −0 cmake/legacy/cmsappendsuffix.cmake
+0 −0 cmake/legacy/cmsconfigurefile.cmake
+0 −0 cmake/legacy/cmscopyfilemd5.cmake
+0 −0 cmake/legacy/cmscopyfiles.cmake
+0 −0 cmake/legacy/cmscopymanuals.cmake
+0 −0 cmake/legacy/cmsdownload.cmake
+0 −0 cmake/legacy/launchWorkflow.cmake
+0 −0 cmake/legacy/macpro.cmake
+1 −2 cmake/legacy/sync.cmake
+0 −0 cmake/legacy/sync.sh.in
+928 −0 cmake/legacy/xpfunmac.cmake
+0 −0 cmake/legacy/xpopts.cmake.in
+0 −0 cmake/legacy/xpsolpkg.cmake
+6 −0 cmake/presets/CMakePresetsBase.json
+0 −67 cmake/presets/xpDarwinMakefilesRelease.json
+23 −0 cmake/presets/xpDarwinNinja.json
+23 −0 cmake/presets/xpLinuxNinja.json
+29 −16 cmake/presets/xpLinuxNinjaTargets.json
+23 −0 cmake/presets/xpWindowsVs2022.json
+409 −290 cmake/pros.cmake
+38 −60 cmake/pros.md
+0 −7 cmake/usexp.cmake.in
+0 −22 cmake/usexpdev.cmake.in
+0 −0 cmake/web/NodePath.cmake
+0 −0 cmake/web/version.js.in
+0 −0 cmake/web/version.ts.in
+0 −0 cmake/web/versionjs.cmake
+82 −139 cmake/web/xpweb.cmake
+184 −8 cmake/xpcfg.cmake
+4 −963 cmake/xpfunmac.cmake
+1 −0 cmake/xproinc.cmake
+2 −2 cmake/xptoplevel.cmake
+0 −1 compose.bld.yml
+0 −1 compose.gpu.yml
+0 −17 denv.sh
+15 −5 funcs.sh
+2 −3 graph/graph.dot
+ graph/graph.png
+0 −5 local.dockerfile
8 changes: 4 additions & 4 deletions .github/workflows/xpbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@ on:
workflow_dispatch:
jobs:
linux:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.05.1
uses: externpro/externpro/.github/workflows/build-linux.yml@25.06
with:
cmake-workflow-preset: LinuxRelease
runon: ubuntu-latest
secrets: inherit
linux-arm64:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.05.1
uses: externpro/externpro/.github/workflows/build-linux.yml@25.06
with:
cmake-workflow-preset: LinuxRelease
runon: ubuntu-24.04-arm
secrets: inherit
macos:
uses: externpro/externpro/.github/workflows/build-macos.yml@25.05.1
uses: externpro/externpro/.github/workflows/build-macos.yml@25.06
with:
cmake-workflow-preset: DarwinRelease
secrets: inherit
windows:
uses: externpro/externpro/.github/workflows/build-windows.yml@25.05.1
uses: externpro/externpro/.github/workflows/build-windows.yml@25.06
with:
cmake-workflow-preset: WindowsRelease
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/xprelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
# Upload build artifacts as release assets
release-from-build:
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.05.1
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.06
with:
workflow_run_url: ${{ github.event.inputs.workflow_run_url }}
artifact_pattern: "*.tar.xz"
Expand Down
11 changes: 10 additions & 1 deletion CMakePresetsBase.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@
{
"name": "config-base",
"hidden": true,
"binaryDir": "${sourceDir}/_bld-${presetName}"
"binaryDir": "${sourceDir}/_bld-${presetName}",
"cacheVariables": {
"XP_BUILD_VERBOSE": "ON"
}
}
],
"buildPresets": [
{
"name": "build-base",
"hidden": true
}
]
}
2 changes: 1 addition & 1 deletion tools/cmake
Submodule cmake updated 1 files
+3 −5 include/xpboost.cmake