Skip to content
Closed
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
+1 βˆ’0 .gitattributes
+0 βˆ’54 .github/README.md
+18 βˆ’18 .github/actions/cmake-build/action.yml
+32 βˆ’0 .github/actions/compare-cmake-presets/action.yml
+201 βˆ’0 .github/actions/compare-cmake-presets/compare.py
+1 βˆ’1 .github/actions/externpro-deps-configure/action.yml
+1 βˆ’1 .github/actions/ghcr-access/action.yml
+79 βˆ’74 .github/actions/sync-caller-workflows/sync.sh
+19 βˆ’0 .github/aw/actions-lock.json
+60 βˆ’0 .github/docs/README.md
+34 βˆ’0 .github/docs/architecture-overview.md
+91 βˆ’0 .github/docs/build-customizations.md
+117 βˆ’0 .github/docs/caller-workflows.md
+50 βˆ’0 .github/docs/release-flow.md
+99 βˆ’0 .github/docs/reusable-workflows.md
+4 βˆ’0 .github/docs/secrets-and-tokens.md
+40 βˆ’0 .github/docs/supply-chain.md
+6 βˆ’3 .github/wf-templates/xpbuild.yml
+1 βˆ’1 .github/wf-templates/xprelease.yml
+1 βˆ’1 .github/wf-templates/xptag.yml
+1 βˆ’0 .github/wf-templates/xpupdate.yml
+7 βˆ’290 .github/workflows/README.md
+10 βˆ’9 .github/workflows/build-linux.yml
+5 βˆ’6 .github/workflows/build-macos.yml
+16 βˆ’8 .github/workflows/build-windows.yml
+1,203 βˆ’0 .github/workflows/create-draft-release-on-tag.lock.yml
+281 βˆ’0 .github/workflows/create-draft-release-on-tag.md
+9 βˆ’16 .github/workflows/init-externpro.yml
+9 βˆ’7 .github/workflows/release-from-build.yml
+1 βˆ’1 .github/workflows/tag-release.yml
+41 βˆ’21 .github/workflows/update-externpro.yml
+0 βˆ’288 .windsurf/workflows/manifestUpdate.md
+154 βˆ’46 README.md
+5 βˆ’5 cmake/README.md
+32 βˆ’0 cmake/docs/README.md
+70 βˆ’0 cmake/docs/classified-sources.md
+52 βˆ’0 cmake/docs/dependency-provider.md
+40 βˆ’0 cmake/docs/diff-types.md
+139 βˆ’0 cmake/docs/download-and-extract.md
+95 βˆ’0 cmake/docs/extern-package.md
+89 βˆ’0 cmake/docs/how-to-adopt-externpro.md
+64 βˆ’0 cmake/docs/packaging.md
+2 βˆ’1 cmake/presets/CMakePresets.json
+180 βˆ’0 cmake/presets/xpMswVs2022.json
+180 βˆ’0 cmake/presets/xpMswVs2026.json
+0 βˆ’157 cmake/presets/xpWindowsVs2019.json
+0 βˆ’180 cmake/presets/xpWindowsVs2022.json
+2 βˆ’2 cmake/pros.cmake
+0 βˆ’88 cmake/pros.md
+24 βˆ’17 cmake/xpfunmac.cmake
+1 βˆ’1 funcs.sh
+0 βˆ’0 scripts/enable-systemctl.sh
+0 βˆ’0 scripts/git-lfs-check.sh
+0 βˆ’0 scripts/wslresolv.sh
+11 βˆ’0 xpro-dev.code-workspace
4 changes: 2 additions & 2 deletions .github/release-tag.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"message": "xpro version 4.2.3.1 tag",
"tag": "xpv4.2.3.1"
"message": "xpro version 4.2.3.2 tag",
"tag": "xpv4.2.3.2"
}
4 changes: 2 additions & 2 deletions .github/workflows/xpbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
contents: read
pull-requests: write
packages: write
uses: externpro/externpro/.github/workflows/build-linux.yml@25.07.12
uses: externpro/externpro/.github/workflows/build-linux.yml@main
secrets:
automation_token: ${{ secrets.GHCR_TOKEN }}
with:
artifact_pattern: '${{ github.event.repository.name }}-*.rpm'
cmake_workflow_preset: LinuxRelease
buildpro_images: '["rocky9-gcc13"]'
cmake_workflow_preset_suffix: Release
2 changes: 1 addition & 1 deletion .github/workflows/xprelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Upload build artifacts as release assets
release-from-build:
if: github.event_name == 'workflow_dispatch'
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.07.12
uses: externpro/externpro/.github/workflows/release-from-build.yml@main
with:
workflow_run_url: ${{ github.event.inputs.workflow_run_url }}
artifact_pattern: '*.rpm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xptag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
tag:
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'xpro' && contains(github.event.pull_request.labels.*.name, 'release:tag') }}
uses: externpro/externpro/.github/workflows/tag-release.yml@25.07.12
uses: externpro/externpro/.github/workflows/tag-release.yml@25.07.16
with:
merge_sha: ${{ github.event.pull_request.merge_commit_sha }}
pr_number: ${{ github.event.pull_request.number }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/xpupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ jobs:
uses: externpro/externpro/.github/workflows/update-externpro.yml@main
secrets:
automation_token: ${{ secrets.XPRO_TOKEN }}
with: {}