Skip to:
Content

BuddyPress.org

Changeset 12992


Ignore:
Timestamp:
07/12/2021 05:50:11 PM (5 years ago)
Author:
imath
Message:

Remove Travis & raise min. WP version in Unit tests GH action

Bye & thanks for your services Travis-CI.org, we decided migrating to .com was not for us and preferred to switch to GitHub actions instead.

As we're starting merging Widget Blocks from our BP Blocks feature as a plugin to Core, let's update the min. tested WP version to 5.8 to limit the risks of mistakes.

props johnjamesjacoby

Fixes #8501

Location:
trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/unit-tests.yml

    r12950 r12992  
    1616        include:
    1717          - php: '8.0'
    18             wp_version: '5.7'
     18            wp_version: '5.8'
    1919          - php: '7.4'
    20             wp_version: '5.7'
     20            wp_version: '5.8'
    2121    env:
    2222      WP_ENV_PHP_VERSION: ${{ matrix.php }}
  • trunk/Gruntfile.js

    r12880 r12992  
    425425    grunt.registerTask( 'jstest', 'Runs all JavaScript tasks.', [ 'jsvalidate:src', 'jshint' ] );
    426426
    427     // Travis CI Tasks.
    428     grunt.registerTask( 'travis:grunt', 'Runs Grunt build task.', ['commit', 'clean:all', 'copy:files', 'uglify:core', 'jsvalidate:build', 'cssmin', 'bp_rest', 'exec:bpdefault', 'exec:cli', 'clean:cli'] );
    429     grunt.registerTask( 'travis:phpunit', ['jsvalidate:src', 'jshint', 'checktextdomain', 'phplint', 'test'] );
    430     grunt.registerTask( 'travis:codecoverage', 'Runs PHPUnit tasks with code-coverage generation.', ['phpunit:codecoverage'] );
    431     grunt.registerTask( 'travis:phpcompat', 'Runs PHP compatibility scan.', ['exec:phpcompat'] );
    432 
    433427    // Patch task.
    434428    grunt.renameTask( 'patch_wordpress', 'patch' );
  • trunk/README.md

    r12952 r12992  
    11# BuddyPress
    2 
    3 [![Build Status](https://api.travis-ci.org/buddypress/BuddyPress.svg?branch=master)](https://travis-ci.org/github/buddypress)
    42
    53[![Unit Tests](https://github.com/buddypress/buddypress/workflows/Unit%20Tests/badge.svg)](https://github.com/buddypress/buddypress/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)
Note: See TracChangeset for help on using the changeset viewer.