From d296e61f2352106e18307caaa58be9c902a37082 Mon Sep 17 00:00:00 2001 From: Dengke Tang Date: Sat, 25 Feb 2023 00:10:35 -0800 Subject: [PATCH] fix stuff --- .github/workflows/ci.yml | 4 ++-- dev-scripts/test.py | 9 --------- 2 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 dev-scripts/test.py diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ed8153..4b6f9dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: phpize ./configure make - ./dev-scripts/run_tests + ./dev-scripts/run_tests.sh # linux-arm: # name: ARM (${{ matrix.arch }}) @@ -123,7 +123,7 @@ jobs: - run: .\configure --with-prefix=${{steps.setup-php-sdk.outputs.prefix}} --enable-awscrt=shared --enable-cli --enable-openssl - run: nmake - run: nmake generate-php-ini - - run: .\dev-scripts\run_tests ${{steps.setup-php-sdk.outputs.prefix}}\php + - run: .\dev-scripts\run_tests.bat ${{steps.setup-php-sdk.outputs.prefix}}\php # windows-vc14: # runs-on: windows-latest diff --git a/dev-scripts/test.py b/dev-scripts/test.py deleted file mode 100644 index 09499dd..0000000 --- a/dev-scripts/test.py +++ /dev/null @@ -1,9 +0,0 @@ -import os - -# get the absolute path of the script file -script_path = os.path.abspath(__file__) - -# get the directory of the script file -script_dir = os.path.dirname(script_path) - -print("Directory of the script file:", script_dir)