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 62 files
+8 −0 .gitattributes
+197 −0 .github/workflows/README.md
+124 −0 .github/workflows/build-linux.yml
+63 −0 .github/workflows/build-windows.yml
+277 −0 .github/workflows/release-from-build.yml
+0 −11 90-bpnet-perform.conf
+0 −106 README.md
+0 −13 check-bpnet-perform.sh
+1 −2 cmake/NodePath.cmake
+70 −0 cmake/README.md
+1 −1 cmake/cpack/README.md
+114 −0 cmake/deps.cmake
+40 −0 cmake/deps.dot
+ cmake/deps.png
+1 −1 cmake/presets/CMakePresets.json
+14 −4 cmake/presets/launchWorkflow.cmake
+0 −117 cmake/presets/xpLinuxMakefiles.json
+3 −15 cmake/presets/xpLinuxMakefilesRelease.json
+97 −10 cmake/presets/xpLinuxNinja.json
+0 −77 cmake/presets/xpLinuxNinjaRelease.json
+83 −16 cmake/presets/xpWindowsVs2019.json
+0 −58 cmake/presets/xpWindowsVs2019Package.json
+0 −78 cmake/presets/xpWindowsVs2019Release.json
+157 −0 cmake/presets/xpWindowsVs2022.json
+412 −123 cmake/pros.cmake
+14 −3 cmake/sync.cmake
+2 −2 cmake/sync.sh.in
+2 −0 cmake/xpcpack.cmake
+24 −11 cmake/xpfunmac.cmake
+0 −24 cmake/xpnode.cmake
+1 −6 cmake/xptoplevel.cmake
+1 −1 cmake/xpuse.cmake.in
+27 −20 cmake/xpweb.cmake
+3 −35 compose.bld.sh
+6 −2 compose.bld.yml
+6 −0 compose.ci.sh
+2 −0 compose.gpu.sh
+5 −3 compose.gpu.yml
+6 −0 compose.pro.sh
+0 −38 compose.pro.yml
+0 −60 compose.vantage.sh
+0 −105 compose.vantage.yml
+0 −9 dbinit/01-databases.sql
+57 −10 denv.sh
+15 −15 devcontainer.json
+0 −11 dockergen/bit.head.dockerfile
+0 −9 dockergen/bit.isrhub.dockerfile
+0 −8 dockergen/bit.run.dockerfile
+0 −2 dockergen/bit.tail.dockerfile
+0 −20 dockergen/bit.user.dockerfile
+0 −21 dockergen/dockergen.sh
+0 −21 dockergen/graph.dot
+ dockergen/graph.png
+82 −69 funcs.sh
+23 −0 graph/graph.dot
+ graph/graph.png
+8 −6 local.dockerfile
+0 −68 odbc.ini.test
+0 −86 offlineImage.sh
+0 −50 rocky85-dev.dockerfile
+0 −33 rocky85-pro.dockerfile
+0 −41 rocky85-run.dockerfile
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
workflow_dispatch:
jobs:
linux:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.04
with:
cmake-workflow-preset: Linux
runon: ubuntu-latest
secrets: inherit
linux-arm64:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.04
with:
cmake-workflow-preset: Linux
runon: ubuntu-24.04-arm
secrets: inherit
windows:
uses: externpro/externpro/.github/workflows/build-windows.yml@25.04
with:
cmake-workflow-preset: Windows
secrets: inherit
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release
on:
workflow_dispatch:
inputs:
workflow_run_url:
description: 'URL of the workflow run containing artifacts to upload (e.g., https://github.com/owner/repo/actions/runs/123456789)'
required: true
type: string
jobs:
# Upload build artifacts as release assets
release-from-build:
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.04
with:
workflow_run_url: ${{ github.event.inputs.workflow_run_url }}
artifact_pattern: "*.tar.xz"
secrets: inherit
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.28)
cmake_minimum_required(VERSION 3.31)
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.devcontainer/cmake ${CMAKE_CURRENT_LIST_DIR}/cmake)
include(preproject)
project(libspatialite VERSION 5.1.0.3)
Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"version": 8,
"include": [
".devcontainer/cmake/presets/xpLinuxNinja.json",
".devcontainer/cmake/presets/xpWindowsVs2019.json"
".devcontainer/cmake/presets/xpWindowsVs2022.json"
]
}
2 changes: 1 addition & 1 deletion docker-compose.sh
2 changes: 1 addition & 1 deletion docker-compose.yml