Skip to:
Content

BuddyPress.org

Changeset 8510


Ignore:
Timestamp:
06/14/2014 06:05:49 PM (11 years ago)
Author:
boonebgorges
Message:

Switch to git checkouts of WP for Travis CI tests

This change results in faster build time

See #5708

Props netweb

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.travis.yml

    r8392 r8510  
    77    - 5.5
    88
     9# WordPress comes from the Git mirror, where 'master' mirrors svn 'trunk' and
     10# x.y mirrors the latest from the x.y branch
    911env:
    10     - WP_VERSION=trunk
    11     - WP_VERSION=tags/3.9
    12     - WP_VERSION=tags/3.8.3
    13     - WP_VERSION=tags/3.7.3
     12    - WP_VERSION=master
     13    - WP_VERSION=3.9
     14    - WP_VERSION=3.8
     15    - WP_VERSION=3.7
    1416
    1517matrix:
    1618  include:
    1719    - php: 5.6
    18       env: WP_VERSION=trunk
     20      env: WP_VERSION=master
    1921  allow_failures:
    2022    - php: 5.6
     
    2426    - WP_CORE_DIR=/tmp/wordpress/
    2527    - mkdir -p $WP_CORE_DIR
    26     - svn co --ignore-externals https://develop.svn.wordpress.org/$WP_VERSION $WP_CORE_DIR
     28    - git clone --depth=1 --branch="$WP_VERSION" git://develop.git.wordpress.org/ $WP_CORE_DIR
    2729    - plugin_slug=$(basename $(pwd))
    2830    - plugin_dir=$WP_CORE_DIR/src/wp-content/plugins/$plugin_slug
Note: See TracChangeset for help on using the changeset viewer.