From 60c713fc3742afe84eafca9a42552e5442efa9c0 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Thu, 10 Nov 2022 16:50:47 -0800 Subject: [PATCH] separate run commands, I can't tell what's going on in the logs --- .gitallowed | 1 + .github/workflows/ci.yml | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .gitallowed diff --git a/.gitallowed b/.gitallowed new file mode 100644 index 0000000..bb759c7 --- /dev/null +++ b/.gitallowed @@ -0,0 +1 @@ +crt/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca6018a..890f1b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,11 +118,10 @@ jobs: arch: ${{ matrix.arch }} toolset: ${{steps.setup-php-sdk.outputs.toolset}} - name: Build ${{ env.PACKAGE_NAME }} - run: | - phpize - configure - nmake - nmake test + run: phpize + run: configure + run: nmake + run: nmake test # macos: # runs-on: macos-${{ matrix.version }}