mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
[TASK] Prevent composer.lock file (#1161)
This is a TYPO3 extension, a library. We do not track the `composer.lock` file for that reason. Composer itself offers an option to prevent generation of the file. This is now configured to prevent the creation of the file. That should prevent issues with local version of the file. One might change the `composer.json` version constraints but updates might fail due to locked version constraints. This no longer happens if no locked version, due to missing lock file, exist. Composer would render warnings when using `composer install` without a lock file. That's why we update the CI commands to use `composer update` instead. That warning was already rendered within CI due to missing file.
This commit is contained in:
parent
1462282da6
commit
ae233d8de0
4 changed files with 4 additions and 3 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
|||
path: ~/.cache/composer
|
||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||
- name: "Install Composer dependencies"
|
||||
run: "composer install --no-progress"
|
||||
run: "composer update --no-progress"
|
||||
- name: "Run command"
|
||||
run: "composer ci:${{ matrix.command }}"
|
||||
strategy:
|
||||
|
|
2
.github/workflows/predefined.yml
vendored
2
.github/workflows/predefined.yml
vendored
|
@ -107,7 +107,7 @@ jobs:
|
|||
path: ~/.cache/composer
|
||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||
- name: "Install Composer dependencies"
|
||||
run: "composer install --no-progress"
|
||||
run: "composer update --no-progress"
|
||||
- name: "Run command"
|
||||
run: "composer ci:${{ matrix.command }}"
|
||||
strategy:
|
||||
|
|
|
@ -7,7 +7,7 @@ build-composer-dependencies:
|
|||
script:
|
||||
- composer --version
|
||||
- COMPOSER_CACHE_DIR=.composer
|
||||
composer install --prefer-dist --no-progress --optimize-autoloader
|
||||
composer update --prefer-dist --no-progress --optimize-autoloader
|
||||
artifacts:
|
||||
when: on_success
|
||||
expire_in: 2 weeks
|
||||
|
|
|
@ -95,6 +95,7 @@
|
|||
"typo3/cms-composer-installers": true
|
||||
},
|
||||
"bin-dir": ".Build/bin",
|
||||
"lock": false,
|
||||
"preferred-install": {
|
||||
"*": "dist"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue