From b3f07bca648e176b7d407b1832c183a894a35a8a Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Sat, 2 Aug 2025 10:30:01 +0200 Subject: [PATCH 1/3] do not include tests or bin in git archives Signed-off-by: Robert Landers --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index e69de29b..d7915533 100644 --- a/.gitattributes +++ b/.gitattributes @@ -0,0 +1,2 @@ +/tests export-ignore +/bin export-ignore \ No newline at end of file From 92882e74f119ab9a68ba1ad29b79d21415839a95 Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Sat, 2 Aug 2025 10:45:39 +0200 Subject: [PATCH 2/3] use built-in composer Signed-off-by: Robert Landers --- .github/workflows/build-cli.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-cli.yaml b/.github/workflows/build-cli.yaml index a823a20c..0119dce9 100644 --- a/.github/workflows/build-cli.yaml +++ b/.github/workflows/build-cli.yaml @@ -97,7 +97,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: | - dphp composer install --ignore-platform-reqs + composer install --ignore-platform-reqs - run: | echo "Running perf test" dphp exec tests/PerformanceTests/PerformanceClient.php From 8a71ecee22fde5d763cfaa951aa4404d5092fd48 Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Sat, 2 Aug 2025 11:19:42 +0200 Subject: [PATCH 3/3] do include tests in archive Signed-off-by: Robert Landers --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index d7915533..42139b65 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1 @@ -/tests export-ignore /bin export-ignore \ No newline at end of file