From 5b7e03c58b54299d2d5acd7e01b88d925af3dab6 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 30 Mar 2021 21:20:36 +0200 Subject: [PATCH] Logs --- .github/workflows/build.yml | 14 +++++++------- tests/waitPackagist.php | 2 ++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf7291031..cf0eb44bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,13 +6,13 @@ jobs: strategy: matrix: php: - - 8.0 - - 7.4 - - 7.3 - - 7.2 - - 7.1 - - 7.0 - - 5.6 + - '8.0' + - '7.4' + - '7.3' + - '7.2' + - '7.1' + - '7.0' + - '5.6' name: PHP ${{ matrix.php }} build env: PHP_CS_FIXER_IGNORE_ENV: 1 diff --git a/tests/waitPackagist.php b/tests/waitPackagist.php index 8c8777ae5..a2a9afd16 100755 --- a/tests/waitPackagist.php +++ b/tests/waitPackagist.php @@ -5,6 +5,8 @@ $commit = getenv('GITHUB_SHA'); $branch = \trim(\shell_exec("git rev-parse --abbrev-ref $commit")); $tag = \trim(\shell_exec("git tag --points-at $commit")); +echo "Waiting for commit $commit on branch $branch (tag $tag)...".PHP_EOL; + $branch = $tag ? $tag : "dev-$branch"; while (true) {