Skip to content

Commit

Permalink
Merge pull request #473 from ergebnis/fix/extract
Browse files Browse the repository at this point in the history
Fix: Extract environment variable
  • Loading branch information
ergebnis-bot authored Jun 23, 2020
2 parents 4c9e35e + 7a31397 commit 5676051
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
env:
COMPOSER_VERSION: "1.10.5"
PHP_EXTENSIONS: "mbstring"
PHP_INI_VALUES: "phar.readonly=0"

jobs:
coding-standards:
Expand Down Expand Up @@ -42,6 +43,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Validate composer.json and composer.lock"
Expand Down Expand Up @@ -123,6 +125,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Determine composer cache directory"
Expand Down Expand Up @@ -175,6 +178,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Determine composer cache directory"
Expand Down Expand Up @@ -272,6 +276,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Install composer:^1"
Expand Down Expand Up @@ -339,6 +344,7 @@ jobs:
with:
coverage: "xdebug"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Determine composer cache directory"
Expand Down Expand Up @@ -400,7 +406,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "phar.readonly=0"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Determine composer cache directory"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on: # yamllint disable-line rule:truthy
env:
COMPOSER_VERSION: "1.10.5"
PHP_EXTENSIONS: "mbstring"
PHP_INI_VALUES: "phar.readonly=0"

jobs:
release:
Expand Down Expand Up @@ -40,7 +41,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "phar.readonly=0"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Determine composer cache directory"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on: # yamllint disable-line rule:truthy

env:
PHP_EXTENSIONS: "mbstring"
PHP_INI_VALUES: "phar.readonly=0"

jobs:
license:
Expand All @@ -32,6 +33,7 @@ jobs:
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "${{ env.PHP_INI_VALUES }}"
php-version: "${{ matrix.php-version }}"

- name: "Validate composer.json and composer.lock"
Expand Down

0 comments on commit 5676051

Please sign in to comment.