Skip to content

Commit

Permalink
fix: step ordering for component release (#4813)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Dec 21, 2021
1 parent 8eea01c commit b5109cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
with:
persist-credentials: false
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
ini-values: memory_limit=2048M
- name: Install Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
max_attempts: 3
command: composer update
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
ini-values: memory_limit=2048M
- id: getTag
name: Get Tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
Expand Down
2 changes: 2 additions & 0 deletions Core/unit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
\SebastianBergmann\Comparator\Factory::getInstance()->register(new MessageAwareArrayComparator());
\SebastianBergmann\Comparator\Factory::getInstance()->register(new ProtobufMessageComparator());
\SebastianBergmann\Comparator\Factory::getInstance()->register(new ProtobufGPBEmptyComparator());

PHPUnit_Framework_Error_Deprecated::$enabled = false;

0 comments on commit b5109cf

Please sign in to comment.