From 05595859701fb70ac21bfaf537c05f0138ed7b1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 04:24:06 +0000 Subject: [PATCH 1/3] Bump cppfront from `2ea1950` to `d252cea` Bumps [cppfront](https://github.com/hsutter/cppfront) from `2ea1950` to `d252cea`. - [Release notes](https://github.com/hsutter/cppfront/releases) - [Commits](https://github.com/hsutter/cppfront/compare/2ea1950989ec24b03b49a388a7b65be980d20bfe...d252ceaf940e3db13c34fcd66e0aba425a3d0892) --- updated-dependencies: - dependency-name: cppfront dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cppfront | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppfront b/cppfront index 2ea1950..d252cea 160000 --- a/cppfront +++ b/cppfront @@ -1 +1 @@ -Subproject commit 2ea1950989ec24b03b49a388a7b65be980d20bfe +Subproject commit d252ceaf940e3db13c34fcd66e0aba425a3d0892 From 03b518f02bdd6af016abd4eff2c12c473e2537cb Mon Sep 17 00:00:00 2001 From: Alex Reinking Date: Mon, 22 Jul 2024 11:27:30 -0400 Subject: [PATCH 2/3] Add cpp2regex.h to interface --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d0a334a..b77eed8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,7 @@ target_sources( FILE_SET HEADERS BASE_DIRS cppfront/include FILES cppfront/include/cpp2util.h + cppfront/include/cpp2regex.h ) if (NOT CPPFRONT_NO_SYSTEM) From 4b0ad38270b72843a7c98a9086ab337d0ce339b8 Mon Sep 17 00:00:00 2001 From: Alex Reinking Date: Mon, 22 Jul 2024 15:11:22 -0400 Subject: [PATCH 3/3] Increase CI timeout --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b30be13..86f5160 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: run: sudo apt-get install ninja-build libc++-18-dev libc++abi-18-dev - name: Run test script - timeout-minutes: 12 + timeout-minutes: 30 run: ./test-all.sh env: CC: ${{ matrix.CC }} @@ -44,7 +44,7 @@ jobs: submodules: true - name: Run test script - timeout-minutes: 12 + timeout-minutes: 30 run: ./test-all.ps1 test-macos: name: Test macOS @@ -61,5 +61,5 @@ jobs: run: brew install ninja llvm@18 - name: Run test script - timeout-minutes: 12 + timeout-minutes: 30 run: ./test-all.sh