proj-flow 0.12.0__tar.gz → 0.13.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {proj_flow-0.12.0 → proj_flow-0.13.1}/CHANGELOG.rst +16 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/PKG-INFO +1 -1
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/__init__.py +1 -1
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/github/cli.py +3 -3
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/flow/configs.py +42 -1
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.flow/config.yml +0 -8
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/src/main.cc.mustache +1 -2
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/tests/test.cc.mustache +1 -3
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/.github/workflows/build.yml +5 -3
- {proj_flow-0.12.0 → proj_flow-0.13.1}/.flow/config.yaml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/.gitignore +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/.readthedocs.yaml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/LICENSE +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/README.md +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/pyproject.toml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/__main__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/arg.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/completers.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/ctx.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/env.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/init.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/makefile.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/release.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/api/step.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/__cmake_version__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/cmd.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/inspect.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/matrix.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/name_list.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/plugins.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/registry.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/base/uname.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/cli/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/cli/argument.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/cli/finder.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/dependency.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/cmake/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/cmake/parser.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/cmake/project.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/cmake/steps.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/conan/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/cplusplus/conan/_conan.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/github/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/github/hosting.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/github/publishing.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/github/switches.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/markdown_changelog.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/python/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/python/rtdocs.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/python/steps.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/python/version.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/re_structured_changelog.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/sign/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/sign/api.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/sign/win32.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/ext/store.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/flow/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/flow/layer.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/flow/steps.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/commit.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/error.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/fmt.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/format.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/hosting/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/hosting/github.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/msg.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/release.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/rich_text/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/rich_text/api.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/rich_text/markdown.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/log/rich_text/re_structured_text.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/base.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/bootstrap.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/init.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/list.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/run.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/minimal/system.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/api.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/cplusplus/__init__.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/cplusplus/cmake_context.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/cplusplus/conan_context.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/cplusplus/project.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/data.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/project/interact.py +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.clang-format +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.flow/flow.py.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.flow/matrix.yml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.flow/official.yml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.gitignore +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/README.md.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/flow +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/flow.cmd +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/cmake/common.cmake.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/extensions/wall/__init__.py.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/extensions/wall/icons/__init__.py.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/extensions/wall/icons/magick.py.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/base.cmake.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/config.cmake +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/cpack.cmake +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/wix/cpack.cmake.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/wix/patches.in.wix +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/wix.cmake.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/CMakeGraphVizOptions.cmake +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/CMakeLists.txt.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/CMakePresets.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/appicon.ico +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/appicon.png +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/wix_banner.bmp +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/wix_dialog.bmp +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/icons/.gitignore +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/icons/appicon-mask.svg +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/icons/appicon.svg +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/src/version.hpp.in.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/conan/.flow/cmake/libcxx_toolchain.cmake +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/conan/.flow/cmake/output_dirs_setup.cmake +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/conan/conanfile.txt +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/conan.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/.github/linters/.isort.cfg +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/.github/linters/.mypy.ini +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/.github/workflows/linter.yml +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/CPPLINT.cfg +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social/.github/ISSUE_TEMPLATE/bug_report.md.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social/.github/ISSUE_TEMPLATE/feature_request.md.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social/CODE_OF_CONDUCT.md.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social/CONTRIBUTING.md +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social.json +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/licenses/0BSD.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/licenses/MIT.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/licenses/Unlicense.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/licenses/WTFPL.mustache +0 -0
- {proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/licenses/Zlib.mustache +0 -0
|
@@ -4,6 +4,22 @@ Changelog
|
|
|
4
4
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
|
|
7
|
+
`0.13.1 <https://github.com/mzdun/proj-flow/compare/v0.13.0...v0.13.1>`_ (2025-02-22)
|
|
8
|
+
=====================================================================================
|
|
9
|
+
|
|
10
|
+
Bug Fixes
|
|
11
|
+
---------
|
|
12
|
+
|
|
13
|
+
- allow GitHub Actions' GH to access drafts (`da81eff <https://github.com/mzdun/proj-flow/commit/da81eff2a9bb6e83f13a4cca276508715e1c0f97>`_)
|
|
14
|
+
|
|
15
|
+
`0.13.0 <https://github.com/mzdun/proj-flow/compare/v0.12.0...v0.13.0>`_ (2025-02-22)
|
|
16
|
+
=====================================================================================
|
|
17
|
+
|
|
18
|
+
New Features
|
|
19
|
+
------------
|
|
20
|
+
|
|
21
|
+
- calculate lts.ubuntu from current date (`2bfa12e <https://github.com/mzdun/proj-flow/commit/2bfa12e87cf7b5b163ef88473d2f4779afeed938>`_)
|
|
22
|
+
|
|
7
23
|
`0.12.0 <https://github.com/mzdun/proj-flow/compare/v0.11.3...v0.12.0>`_ (2025-02-22)
|
|
8
24
|
=====================================================================================
|
|
9
25
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: proj-flow
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.1
|
|
4
4
|
Summary: C++ project maintenance, automated
|
|
5
5
|
Project-URL: Changelog, https://github.com/mzdun/proj-flow/blob/main/CHANGELOG.rst
|
|
6
6
|
Project-URL: Documentation, https://proj-flow.readthedocs.io/en/latest/
|
|
@@ -73,7 +73,7 @@ def release_cmd(
|
|
|
73
73
|
typing.Optional[str],
|
|
74
74
|
arg.Argument(
|
|
75
75
|
help="Ignore the version change from changelog and instead use this value. "
|
|
76
|
-
f"Allowed values are: {name_list(FORCED_LEVEL_CHOICES)}",
|
|
76
|
+
f"Allowed values are: {name_list(FORCED_LEVEL_CHOICES)}.",
|
|
77
77
|
meta="level",
|
|
78
78
|
choices=FORCED_LEVEL_CHOICES,
|
|
79
79
|
),
|
|
@@ -142,8 +142,8 @@ def publish(
|
|
|
142
142
|
upload: typing.Annotated[
|
|
143
143
|
typing.Optional[str],
|
|
144
144
|
arg.Argument(
|
|
145
|
-
help="If present,
|
|
146
|
-
"
|
|
145
|
+
help="If present, upload files from the directory to the referenced "
|
|
146
|
+
"release before publishing.",
|
|
147
147
|
meta="directory",
|
|
148
148
|
),
|
|
149
149
|
],
|
|
@@ -9,7 +9,9 @@ using ``-D`` switches.
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
import argparse
|
|
12
|
+
import datetime
|
|
12
13
|
import os
|
|
14
|
+
import sys
|
|
13
15
|
from typing import Any, Callable, Dict, List
|
|
14
16
|
|
|
15
17
|
from proj_flow.api import env
|
|
@@ -90,9 +92,43 @@ def _expand_one(config: dict, github_os: str, os_in_name: str):
|
|
|
90
92
|
return config
|
|
91
93
|
|
|
92
94
|
|
|
95
|
+
__printed_lts_ubuntu_warning = False
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def _ubuntu_lts(today=datetime.date.today(), lts_years=5):
|
|
99
|
+
year = today.year
|
|
100
|
+
for y in range(year - lts_years, year + 1):
|
|
101
|
+
if y % 2 != 0:
|
|
102
|
+
continue
|
|
103
|
+
release = datetime.date(y, 4, 1)
|
|
104
|
+
end_of_life = datetime.date(y + lts_years, 1, 31)
|
|
105
|
+
if release > today or end_of_life < today:
|
|
106
|
+
continue
|
|
107
|
+
yield f"ubuntu-{y % 100}.04"
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def _lts_list(config: dict, lts_list: Dict[str, List[str]]):
|
|
111
|
+
os = config["os"]
|
|
112
|
+
raw = lts_list.get(os)
|
|
113
|
+
if os == "ubuntu":
|
|
114
|
+
if raw is not None:
|
|
115
|
+
global __printed_lts_ubuntu_warning
|
|
116
|
+
if not __printed_lts_ubuntu_warning:
|
|
117
|
+
__printed_lts_ubuntu_warning = True
|
|
118
|
+
print(
|
|
119
|
+
"\033[1;33m-- lts.ubuntu in config.yaml is deprecated; "
|
|
120
|
+
"please remove it, so it can be calculated base on "
|
|
121
|
+
"current date\033[m",
|
|
122
|
+
file=sys.stderr,
|
|
123
|
+
)
|
|
124
|
+
else:
|
|
125
|
+
raw = list(_ubuntu_lts())
|
|
126
|
+
return raw or []
|
|
127
|
+
|
|
128
|
+
|
|
93
129
|
def _expand_config(config: dict, spread_lts: bool, lts_list: Dict[str, List[str]]):
|
|
94
130
|
if spread_lts:
|
|
95
|
-
spread =
|
|
131
|
+
spread = _lts_list(config, lts_list)
|
|
96
132
|
if len(spread):
|
|
97
133
|
return [
|
|
98
134
|
_expand_one({key: config[key] for key in config}, lts, lts)
|
|
@@ -136,6 +172,11 @@ class Configs:
|
|
|
136
172
|
# from commands/github
|
|
137
173
|
spread_lts = hasattr(args, "matrix") and not not args.matrix
|
|
138
174
|
|
|
175
|
+
if not spread_lts:
|
|
176
|
+
# allow "run" to see the warning about "lts.ubuntu"
|
|
177
|
+
for config in configs:
|
|
178
|
+
_lts_list(config, rt.lts_list)
|
|
179
|
+
|
|
139
180
|
turned = matrix.flatten(
|
|
140
181
|
[
|
|
141
182
|
_expand_config(config, spread_lts, rt.lts_list)
|
|
@@ -18,17 +18,9 @@ compiler:
|
|
|
18
18
|
gcc: [ gcc, g++ ]
|
|
19
19
|
os-default: { ubuntu: gcc, windows: msvc }
|
|
20
20
|
|
|
21
|
-
lts:
|
|
22
|
-
ubuntu:
|
|
23
|
-
- ubuntu-20.04
|
|
24
|
-
- ubuntu-22.04
|
|
25
|
-
- ubuntu-24.04
|
|
26
|
-
|
|
27
21
|
postproc:
|
|
28
22
|
exclude:
|
|
29
|
-
- { github_os: ubuntu-20.04, sanitizer: true }
|
|
30
23
|
- { github_os: ubuntu-24.04, sanitizer: true }
|
|
31
|
-
- { github_os: ubuntu-20.04, compiler: clang }
|
|
32
24
|
|
|
33
25
|
|
|
34
26
|
shortcuts:
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/src/main.cc.mustache
RENAMED
|
@@ -13,8 +13,7 @@ int main(int argc, char* argv[]) {
|
|
|
13
13
|
long counter{};
|
|
14
14
|
|
|
15
15
|
args::null_translator tr{};
|
|
16
|
-
args::parser parser{"{{PROJECT.DESCRIPTION}}",
|
|
17
|
-
args::from_main(argc, argv), &tr};
|
|
16
|
+
args::parser parser{"{{PROJECT.DESCRIPTION}}", args::from_main(argc, argv), &tr};
|
|
18
17
|
|
|
19
18
|
parser.arg(path, "path").meta("<file>").help("sets the path of foobar");
|
|
20
19
|
parser.set<std::true_type>(verbose, "v")
|
|
@@ -221,9 +221,9 @@ jobs:
|
|
|
221
221
|
if: ${{ fromJson(needs.merge.outputs.RELEASE) }}
|
|
222
222
|
needs: merge
|
|
223
223
|
runs-on: ubuntu-latest
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
224
|
+
permissions:
|
|
225
|
+
contents: write
|
|
226
|
+
packages: write
|
|
227
227
|
|
|
228
228
|
steps:
|
|
229
229
|
- name: Checkout
|
|
@@ -237,3 +237,5 @@ jobs:
|
|
|
237
237
|
|
|
238
238
|
- name: Publish the release
|
|
239
239
|
run: python ./.flow/flow.py github publish --upload "${{github.workspace}}/build/download/packages"
|
|
240
|
+
env:
|
|
241
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/base/.flow/flow.py.mustache
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/.flow/packages/cpack.cmake
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/CMakeGraphVizOptions.cmake
RENAMED
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/CMakeLists.txt.mustache
RENAMED
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/appicon.ico
RENAMED
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/appicon.png
RENAMED
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/wix_banner.bmp
RENAMED
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/assets/wix_dialog.bmp
RENAMED
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/icons/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/cmake/data/icons/appicon.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_actions/CPPLINT.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{proj_flow-0.12.0 → proj_flow-0.13.1}/src/proj_flow/template/layers/github_social/CONTRIBUTING.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|