Skip to content

Commit 29a3eff

Browse files
authored
Merge pull request #3 from externpro/updates
updates to support python 3.6...<3.13
2 parents d6bf0ee + 7c147fc commit 29a3eff

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.devcontainer

Submodule .devcontainer updated 55 files

.github/workflows/xpbuild.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ on:
77
workflow_dispatch:
88
jobs:
99
linux:
10-
uses: externpro/externpro/.github/workflows/build-linux.yml@25.05.1
10+
uses: externpro/externpro/.github/workflows/build-linux.yml@25.06
1111
with:
1212
cmake-workflow-preset: LinuxRelease
1313
runon: ubuntu-latest
1414
secrets: inherit
1515
linux-arm64:
16-
uses: externpro/externpro/.github/workflows/build-linux.yml@25.05.1
16+
uses: externpro/externpro/.github/workflows/build-linux.yml@25.06
1717
with:
1818
cmake-workflow-preset: LinuxRelease
1919
runon: ubuntu-24.04-arm
2020
secrets: inherit
2121
macos:
22-
uses: externpro/externpro/.github/workflows/build-macos.yml@25.05.1
22+
uses: externpro/externpro/.github/workflows/build-macos.yml@25.06
2323
with:
2424
cmake-workflow-preset: DarwinRelease
2525
secrets: inherit
2626
windows:
27-
uses: externpro/externpro/.github/workflows/build-windows.yml@25.05.1
27+
uses: externpro/externpro/.github/workflows/build-windows.yml@25.06
2828
with:
2929
cmake-workflow-preset: WindowsRelease
3030
secrets: inherit

.github/workflows/xprelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
# Upload build artifacts as release assets
1111
release-from-build:
12-
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.05.1
12+
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.06
1313
with:
1414
workflow_run_url: ${{ github.event.inputs.workflow_run_url }}
1515
artifact_pattern: "*.tar.xz"

CMakePresetsBase.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@
44
{
55
"name": "config-base",
66
"hidden": true,
7-
"binaryDir": "${sourceDir}/_bld-${presetName}"
7+
"binaryDir": "${sourceDir}/_bld-${presetName}",
8+
"cacheVariables": {
9+
"XP_BUILD_VERBOSE": "ON"
10+
}
11+
}
12+
],
13+
"buildPresets": [
14+
{
15+
"name": "build-base",
16+
"hidden": true
817
}
918
]
1019
}

tools/cmake

0 commit comments

Comments
 (0)