You are here

drupalci.yml in CKEditor Color Button 8

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for Colorbutton module.
  2. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  3. build:
  4. assessment:
  5. validate_codebase:
  6. phplint:
  7. csslint:
  8. halt-on-fail: false
  9. eslint:
  10. # A test must pass eslinting standards check in order to continue processing.
  11. halt-on-fail: false
  12. phpcs:
  13. # phpcs will use core's specified version of Coder.
  14. sniff-all-files: false
  15. halt-on-fail: false
  16. testing:
  17. # Install the colorbutton and panelbutton libraries.
  18. container_command:
  19. commands:
  20. - "sudo apt-get update"
  21. - "sudo apt-get install -y unzip"
  22. - "cd ${SOURCE_DIR}"
  23. - "sudo mkdir libraries"
  24. - "sudo curl https://download.ckeditor.com/colorbutton/releases/colorbutton_4.14.0.zip --output colorbutton.zip --silent"
  25. - "sudo curl https://download.ckeditor.com/panelbutton/releases/panelbutton_4.14.0.zip --output panelbutton.zip --silent"
  26. - "sudo unzip colorbutton.zip"
  27. - "sudo unzip panelbutton.zip"
  28. - "sudo mv colorbutton libraries/colorbutton"
  29. - "sudo mv panelbutton libraries/panelbutton"
  30. halt-on-fail: true
  31. # run_tests task is executed several times in order of performance speeds.
  32. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  33. # suppress-deprecations is false in order to be alerted to usages of
  34. # deprecated code.
  35. run_tests.phpunit:
  36. types: 'PHPUnit-Unit'
  37. testgroups: '--all'
  38. suppress-deprecations: true
  39. halt-on-fail: false
  40. run_tests.kernel:
  41. types: 'PHPUnit-Kernel'
  42. testgroups: '--all'
  43. suppress-deprecations: true
  44. halt-on-fail: false
  45. run_tests.build:
  46. types: 'PHPUnit-Build'
  47. testgroups: '--all'
  48. suppress-deprecations: true
  49. halt-on-fail: false
  50. run_tests.functional:
  51. types: 'PHPUnit-Functional'
  52. testgroups: '--all'
  53. suppress-deprecations: true
  54. halt-on-fail: false
  55. run_tests.javascript:
  56. concurrency: 15
  57. types: 'PHPUnit-FunctionalJavascript'
  58. testgroups: '--all'
  59. suppress-deprecations: true
  60. halt-on-fail: false