Set up GitLab CI, fix reported errors (phpcs, phpstan)

Created on 6 March 2025, about 1 month ago

Problem/Motivation

I found that the module doesn't have .gitlab-ci.yml and MRs aren't checked for code style/quality.
Maybe the module will get unit tests in the future and usage of GitLab CI will be useful as well.

GitLab CI documentation: https://www.drupal.org/docs/develop/git/using-gitlab-to-contribute-to-dr... β†’

Steps to reproduce

I checked the code with phpcs and phpstan locally with Drupal 11.1.3 and here reports I get:

$ phpcs web/modules/contrib/media_bulk_upload/ --report-summary
----------------------------------------------------------------------------------------------------
A TOTAL OF 54 ERRORS AND 17 WARNINGS WERE FOUND IN 13 FILES
----------------------------------------------------------------------------------------------------
$ phpstan analyse web/modules/contrib/media_bulk_upload/

[ERROR] Found 6 errors

Proposed resolution

  1. Add .gitlab-ci.yml and configure it.
  2. Fix reported errors from phpcs, phpstan.
  3. Fix other errors reported by GitLab CI if not all steps are green.
πŸ“Œ Task
Status

Active

Version

3.0

Component

Code

Created by

πŸ‡ΊπŸ‡¦Ukraine deimos

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @deimos
  • πŸ‡ΊπŸ‡¦Ukraine deimos

    I'm going to work on this and will return tomorrow with the results.

  • Pipeline finished with Success
    about 1 month ago
    Total: 154s
    #442137
  • πŸ‡ΊπŸ‡¦Ukraine deimos

    Add basic .gitlab-ci.yml and phpstan.neon (for phpstan) files.

  • Pipeline finished with Success
    30 days ago
    Total: 146s
    #442497
  • Pipeline finished with Success
    30 days ago
    Total: 146s
    #442524
  • πŸ‡ΊπŸ‡¦Ukraine deimos

    Added fixed for phpstan and phpstan (max PHP version), left comments in MR!22.

  • Pipeline finished with Success
    29 days ago
    Total: 284s
    #442582
  • Pipeline finished with Success
    29 days ago
    Total: 143s
    #442600
  • Pipeline finished with Success
    29 days ago
    #442605
  • πŸ‡ΊπŸ‡¦Ukraine deimos

    Added phpcs, cspell and eslint fixes. Pipeline is green, MR!22 is ready for review.

  • πŸ‡ΊπŸ‡¦Ukraine deimos

    Take back to work to check why phpstan job doesn't detect deprecations and fix deprecation

    ------ -----------------------------------------------------------
      Line   src/Form/MediaBulkUploadForm.php
     ------ -----------------------------------------------------------
      450    Call to deprecated function watchdog_exception():
             in drupal:10.1.0 and is removed from drupal:11.0.0. Use
               Use \Drupal\Core\Utility\Error::logException() instead.
     ------ -----------------------------------------------------------
    
  • Pipeline finished with Success
    29 days ago
    Total: 152s
    #442870
  • Pipeline finished with Failed
    29 days ago
    #442930
  • Pipeline finished with Failed
    29 days ago
    #442931
  • Pipeline finished with Success
    29 days ago
    Total: 183s
    #442939
  • Pipeline finished with Success
    29 days ago
    Total: 153s
    #442944
  • Pipeline finished with Success
    29 days ago
    Total: 146s
    #442951
  • Pipeline finished with Success
    29 days ago
    Total: 146s
    #442953
  • πŸ‡ΊπŸ‡¦Ukraine deimos

    The deprecated code was ignored because of // @phpstan-ignore-next-line.

    src/Form/MediaBulkUploadForm.php

      public function batchOperation($id, array $operation_details, array &$context) {
    ...
    
        catch (\Exception $e) {
          if (method_exists(Error::class, 'logException')) {
            Error::logException($this->getLogger('media_bulk_upload'), $e);
          }
          else {
            // @phpstan-ignore-next-line
            watchdog_exception('media_bulk_upload', $e);
          }
        }
      }
    

    I removed deprecated code since Media Bulk Upload 3.0.x-dev version is compatible with Drupal ^10.3 || ^11 and Error::logException is present for sure.

    Additionally I extended .gitlab-ci.yml to run checks for previous major (in current case Drupal 10.4.2), previous minor (in current case Drupal 11.0.8) and next minor (in current case Drupal 11.x-dev 67cb9b5) versions.

    Put back to Needs review.

  • Pipeline finished with Success
    29 days ago
    Total: 146s
    #442988
Production build 0.71.5 2024