You are here

drupalci.yml in Responsive and off-canvas menu 4.4.x

Same filename and directory in other branches
  1. 4.1.x drupalci.yml
  2. 4.3.x drupalci.yml

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for Drupal core and modified for
  2. # the responsive_menu module.
  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. # updated for 4.4.x branch. See #3157997
  18. container_command:
  19. commands:
  20. - cd ${SOURCE_DIR}
  21. - sudo -u www-data mkdir libraries
  22. - sudo -u www-data curl -L $(curl -s https://api.github.com/repos/FrDH/mmenu-js/releases/latest | grep tarball_url | cut -d '"' -f4) --output mmenu.tar.gz --silent
  23. - sudo -u www-data tar xzf mmenu.tar.gz
  24. - sudo -u www-data mv FrDH-mmenu* libraries/mmenu
  25. - sudo -u www-data curl -L https://github.com/joeldbirch/superfish/archive/v1.7.10.tar.gz --output superfish.tar.gz --silent
  26. - sudo -u www-data tar xzf superfish.tar.gz
  27. - sudo -u www-data mv superfish-1.7.10 libraries/superfish
  28. halt-on-fail: true
  29. # run_tests task is executed several times in order of performance speeds.
  30. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  31. # suppress-deprecations is false in order to be alerted to usages of
  32. # deprecated code.
  33. run_tests.phpunit:
  34. types: 'PHPUnit-Unit'
  35. testgroups: 'responsive_menu'
  36. suppress-deprecations: false
  37. halt-on-fail: false
  38. run_tests.kernel:
  39. types: 'PHPUnit-Kernel'
  40. testgroups: 'responsive_menu'
  41. suppress-deprecations: false
  42. halt-on-fail: false
  43. run_tests.simpletest:
  44. types: 'Simpletest'
  45. testgroups: 'responsive_menu'
  46. suppress-deprecations: false
  47. halt-on-fail: false
  48. run_tests.build:
  49. types: 'PHPUnit-Build'
  50. testgroups: 'responsive_menu'
  51. suppress-deprecations: false
  52. halt-on-fail: false
  53. run_tests.functional:
  54. types: 'PHPUnit-Functional'
  55. testgroups: 'responsive_menu'
  56. suppress-deprecations: false
  57. halt-on-fail: false
  58. run_tests.javascript:
  59. concurrency: 15
  60. types: 'PHPUnit-FunctionalJavascript'
  61. testgroups: 'responsive_menu'
  62. suppress-deprecations: false
  63. halt-on-fail: false
  64. # Run nightwatch testing.
  65. # @see https://www.drupal.org/project/drupal/issues/2869825
  66. nightwatchjs: