Commit 41abdd47 authored by Adam G-H's avatar Adam G-H
Browse files

Issue #3320544 by phenaproxima: Remove old infrastructure

parent b8f5a3c4
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
/logs export-ignore
/*.sh export-ignore
/.travis.yml export-ignore
/tests/fixtures export-ignore

.travis.yml

deleted100644 → 0
+0 −96
Original line number Diff line number Diff line
---
language: php

php: "7.3"

addons:
  chrome: stable

cache:
  directories:
    - "$HOME/.composer/cache"
    - "$HOME/.drush/cache"
    - "${TMPDIR:-/tmp}/phpstan/cache"

env:
  global:
    - ORCA_SUT_NAME=drupal/lightning_layout
    - ORCA_SUT_BRANCH=8.x-2.x
    # Specify the version of ORCA to use. Use dev-master to track the latest
    # release, dev-develop to track Dev/HEAD, or any other Composer version
    # string.
    # @see https://getcomposer.org/doc/articles/versions.md
    - ORCA_VERSION=^3
    - ORCA_TELEMETRY_ENABLE=TRUE

matrix:
  fast_finish: true
  include:
    # Standard ORCA jobs.
    - { env: ORCA_JOB=STATIC_CODE_ANALYSIS, name: "Static code analysis" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_OLDEST_SUPPORTED, name: "Integrated test on oldest supported Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_LATEST_LTS, name: "Integrated test on latest LTS Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_PREVIOUS_MINOR, name: "Integrated test on previous minor Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_UPGRADE_TEST_FROM_PREVIOUS_MINOR, name: "Integrated upgrade test from previous minor" }
    - { env: ORCA_JOB=ISOLATED_TEST_ON_CURRENT, name: "Isolated test on current Drupal core version" }
    # To send PHPUnit test coverage data to Coveralls (coveralls.io), configure
    # your GitHub repository and uncomment the following line. The job on the
    # line immediately before is otherwise identical and can be removed. Note:
    # this setting implies ORCA_COVERAGE_ENABLE, which need not be set
    # separately.
    # @see https://github.com/acquia/orca/blob/master/docs/faq.md#coveralls
    # @see https://github.com/acquia/orca/blob/master/docs/advanced-usage.md#ORCA_COVERALLS_ENABLE
    # @see https://github.com/acquia/orca/blob/master/docs/advanced-usage.md#ORCA_COVERAGE_ENABLE
    # - { env: ORCA_JOB=ISOLATED_TEST_ON_CURRENT ORCA_COVERALLS_ENABLE=TRUE, name: "Isolated test on current Drupal core version with test coverage" }
    #
    # To generate test coverage data to send somewhere other than Coveralls, use
    # the ORCA_COVERAGE_ENABLE variable instead.
    # - { env: ORCA_JOB=ISOLATED_TEST_ON_CURRENT ORCA_COVERAGE_ENABLE=TRUE, name: "Isolated test on current Drupal core version with test coverage" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_CURRENT, name: "Integrated test on current Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR, name: "Integrated upgrade test to next minor Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR_DEV, name: "Integrated upgrade test to next minor dev Drupal core version" }
    - { env: ORCA_JOB=ISOLATED_TEST_ON_CURRENT_DEV, name: "Isolated test on current dev Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_CURRENT_DEV, name: "Integrated test on current dev Drupal core version" }
    - { env: ORCA_JOB=LOOSE_DEPRECATED_CODE_SCAN, name: "Loose deprecated code scan" }
    - { env: ORCA_JOB=STRICT_DEPRECATED_CODE_SCAN, name: "Strict deprecated code scan" }
    - { env: ORCA_JOB=DEPRECATED_CODE_SCAN_W_CONTRIB, name: "Deprecated code scan w/ contrib" }
    - { env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MINOR, name: "Isolated test on next minor Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MINOR, name: "Integrated test on next minor Drupal core version" }
    - { env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MINOR_DEV, name: "Isolated test on next minor dev Drupal core version" }
    - { env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MINOR_DEV, name: "Integrated test on next minor dev Drupal core version" }
    # Uncomment the following four lines to enable the corresponding tests once
    # the next major version of Drupal core has an alpha release or earlier.
    # Until then it's wasteful to use CI jobs on them, even if they exit early.
    # - { env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_BETA_OR_LATER, name: "Isolated test on next major, latest minor beta-or-later Drupal core version" }
    # - { env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_BETA_OR_LATER, name: "Integrated test on next major, latest minor beta-or-later Drupal core version" }
    # - { env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV, name: "Isolated test on next major, latest minor dev Drupal core version" }
    # - { env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV, name: "Integrated test on next major, latest minor dev Drupal core version" }
    - { env: ORCA_JOB=ISOLATED_UPGRADE_TEST_TO_NEXT_MAJOR_BETA_OR_LATER, name: "Isolated upgrade test to next major beta-or-later Drupal core version" }
    - { env: ORCA_JOB=ISOLATED_UPGRADE_TEST_TO_NEXT_MAJOR_DEV, name: "Isolated upgrade test to next major dev Drupal core version" }
  allow_failures:
    - env: ORCA_JOB=INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR_DEV
    - env: ORCA_JOB=LOOSE_DEPRECATED_CODE_SCAN
    - env: ORCA_JOB=DEPRECATED_CODE_SCAN_W_CONTRIB
    - env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MINOR_DEV
    - env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MINOR_DEV
    - env: ORCA_JOB=ISOLATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV
    - env: ORCA_JOB=INTEGRATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV
    - env: ORCA_JOB=ISOLATED_UPGRADE_TEST_TO_NEXT_MAJOR_DEV

before_install:
  - composer create-project --no-dev acquia/orca ../orca "$ORCA_VERSION"
  - ../orca/bin/travis/before_install.sh

install: ../orca/bin/travis/install.sh

before_script: ../orca/bin/travis/before_script.sh

script: ../orca/bin/travis/script.sh

before_cache: ../orca/bin/travis/before_cache.sh

after_success: ../orca/bin/travis/after_success.sh

after_failure: ../orca/bin/travis/after_failure.sh

after_script: ../orca/bin/travis/after_script.sh

CHANGELOG.md

deleted100644 → 0
+0 −89
Original line number Diff line number Diff line
## 2.9.0
* Internal changes for development and testing, but nothing that should affect
  users of Lightning Layout.

## 2.8.0
* Updated Panels to 4.6.

## 2.7.0
* Updated Simple GMap to 3.0.
* Fixed a bug where new dependencies were not enabled during update. 
  (Issue #3098556)

## 2.6.0
* Updated Simple GMap to 2.1-rc1.
* Updated Layout Builder Restrictions to 2.7.
* Updated Layout Builder Symmetric Translations to 1.0-alpha2.

## 2.5.0
* Allowed Panelizer 5 to be installed alongside Lightning Layout. If you need
  to use Panelizer to add or edit default layouts, you can require Panelizer
  4 in your project via `composer require drupal/panelizer:^4.1`.

## 2.4.0
* Fixed an incompatibility between Lightning Landing Page and Lightning
  Workflow 3.14 and later.

## 2.3.0
There are no user-facing changes in this version.

## 2.2.0
* Added support for Drupal core 8.8.x.
* Updated Background Image Formatter to 1.10.
* Layout Builder Symmetric Translations will only be installed if the
  site is using the Language module. (Issue #3066811)
* Fixed a PHP warning that can occur after a cache clear. (Issue #3068755)
* Lightning Layout now allows CTools 3.0 or later.
* Lightning Layout now includes the Layout Builder Styles module as 
  a dependency.

## 2.1.0
* Added the Layout Builder Symmetric Translations module to provide basic
  translation support for landing pages.
* Updated Background Image Formatter to 1.9.
* Updated Layout Builder Library to 1.0-beta1.
* Updated Layout Builder Restrictions to 2.1.
* Updated Panels to 4.4.

## 2.0.0
* Panels and Panelizer have been replaced with Layout Builder. (Issue #2952620)

## 1.7.0
* Lightning Layout now supports Lightning Core 4.x (Drupal core 8.7.x).
* Added a description to an administrative link. (Issue #3034041)

## 1.6.0
* Updated Lightning Core to 2.12 or 3.5, which security update to Drupal core to
  8.5.9 and 8.6.6, respectively.
* Changes were made to the internal testing infrastructure, but nothing that
  will affect users of Lightning Layout.

## 1.5.0
* Many internal changes to testing infrastructure, but nothing that affects
  users of Lightning Layout.

## 1.4.0
* Fixed a bug which could cause Behat test failures due to a conflict with
  Content Moderation. (Issue #2989369)

## 1.3.0
* Allow Lightning Core 3.x and Drupal core 8.6.x.
* Updated logic to check for the null value in PanelizerWidget (Issue #2966924)
* Lightning Landing Page now checks for the presence of Lightning Workflow, not
  Content Moderation when opting into moderation. (Issue #2984739)

## 1.2.0
* Updated to Panelizer 4.1 and Panels 4.3.

## 1.1.0
* Entity Blocks was updated to its latest stable release and is no longer
  patched by Lightning Layout.
* Behat contexts bundled with Lightning Layout were moved into the
  `Acquia\LightningExtension\Context` namespace.

## 1.0.0
* No changes since last release.

## 1.0.0-rc1
* Fixed a configuration problem that caused an unneeded dependency on the
  Lightning profile. (Issue #2933445)
+0 −24
Original line number Diff line number Diff line
@@ -30,27 +30,3 @@ code base:
composer config repositories.drupal composer https://packages.drupal.org/8
composer require drupal/lightning_layout
```

#### Updates
Lightning Layout and its components use the normal Drupal database update system
as often as possible. However, there are occasionally certain updates which
touch configuration and may change the functionality of your site. These updates
are optional, and are performed by a special utility at the command line. This 
utility is compatible with both 
[Drupal Console](https://github.com/hechoendrupal/drupal-console) and
[Drush](https://drush.org) 9 or later.

To run updates using Drush 9:

`
drush update:lightning
`

With Drupal Console:

`
drupal update:lightning
`

#### Known Issues
None yet.
+0 −13
Original line number Diff line number Diff line
@@ -32,19 +32,6 @@
            }
        }
    },
    "repositories": {
        "drupal": {
            "type": "composer",
            "url": "https://packages.drupal.org/8"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "cweagans/composer-patches": true
        }
    },
    "require-dev": {
        "drush/drush": "^11.1"
    }
Loading