Skip to content

Commit

Permalink
Test 4b
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed May 6, 2024
1 parent 815b27b commit 76e2c3c
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ concurrency:
cancel-in-progress: true

jobs:
performancetesting:
init:
runs-on: ubuntu-latest
outputs:
PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}
PULL_REQUEST_BASE_REF: ${{ github.event.pull_request.base.ref }}
PULL_REQUEST_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }}

performance-testing:
runs-on: ubuntu-latest
needs: init

strategy:
fail-fast: false
Expand All @@ -17,11 +25,6 @@ jobs:

name: performance-${{ matrix.php-versions }}

outputs:
PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}
PULL_REQUEST_BASE_REF: ${{ github.event.pull_request.base.ref }}
PULL_REQUEST_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }}

steps:
- name: Checkout server before PR
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
Expand Down Expand Up @@ -65,6 +68,6 @@ jobs:
- name: Apply PR 4
run: |
echo ${{ needs.performancetesting.outputs.PULL_REQUEST_HEAD_REF }}
echo ${{ needs.performancetesting.outputs.PULL_REQUEST_BASE_REF }}
echo ${{ needs.performancetesting.outputs.PULL_REQUEST_CLONE_URL }}
echo ${{ needs.init.outputs.PULL_REQUEST_HEAD_REF }}
echo ${{ needs.init.outputs.PULL_REQUEST_BASE_REF }}
echo ${{ needs.init.outputs.PULL_REQUEST_CLONE_URL }}

0 comments on commit 76e2c3c

Please sign in to comment.