You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.6 KiB
125 lines
3.6 KiB
name: CI |
|
|
|
on: |
|
push: |
|
branches: [ 2.x ] |
|
pull_request: |
|
branches: [ 2.x ] |
|
workflow_dispatch: |
|
|
|
jobs: |
|
build: |
|
env: |
|
DRUPAL_VERSION: ${{ matrix.drupal-version }} |
|
SCRIPT_DIR: ${{ github.workspace }}/islandora_ci |
|
DRUPAL_DIR: /opt/drupal |
|
PHPUNIT_FILE: ${{ github.workspace }}/build_dir/phpunit.xml |
|
|
|
runs-on: ubuntu-latest |
|
continue-on-error: ${{ matrix.allowed_failure }} |
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
php-versions: ["8.1", "8.2", "8.3"] |
|
test-suite: ["kernel", "functional", "functional-javascript"] |
|
drupal-version: ["10.1.x", "10.2.x", "10.3.x-dev"] |
|
mysql: ["8.0"] |
|
allowed_failure: [false] |
|
exclude: |
|
- php-versions: "8.3" |
|
drupal-version: "10.1.x" |
|
|
|
|
|
name: PHP ${{ matrix.php-versions }} | drupal ${{ matrix.drupal-version }} | mysql ${{ matrix.mysql }} | test-suite ${{ matrix.test-suite }} |
|
|
|
services: |
|
mysql: |
|
image: mysql:${{ matrix.mysql }} |
|
env: |
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes |
|
MYSQL_DATABASE: drupal |
|
ports: |
|
- 3306:3306 |
|
activemq: |
|
image: webcenter/activemq:5.14.3 |
|
ports: |
|
- 8161:8161 |
|
- 61616:61616 |
|
- 61613:61613 |
|
|
|
steps: |
|
|
|
- name: Checkout code |
|
uses: actions/checkout@v4 |
|
with: |
|
path: build_dir |
|
|
|
- name: Checkout islandora_ci |
|
uses: actions/checkout@v4 |
|
with: |
|
repository: islandora/islandora_ci |
|
ref: github-actions |
|
path: islandora_ci |
|
|
|
- name: Setup PHP |
|
uses: shivammathur/setup-php@v2 |
|
with: |
|
php-version: ${{ matrix.php-versions }} |
|
tools: composer:v2 |
|
|
|
- name: Setup Mysql client |
|
run: | |
|
sudo apt-get update |
|
sudo apt-get remove -y mysql-client mysql-common |
|
sudo apt-get install -y mysql-client |
|
|
|
- name: Cache Composer dependencies |
|
uses: actions/cache@v3 |
|
with: |
|
path: /tmp/composer-cache |
|
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} |
|
|
|
- name: Setup Drupal |
|
run: | |
|
mkdir $DRUPAL_DIR |
|
$SCRIPT_DIR/travis_setup_drupal.sh |
|
cd $DRUPAL_DIR |
|
chmod -R u+w web/sites/default |
|
mkdir -p web/sites/simpletest/browser_output |
|
|
|
- name: Setup composer paths |
|
run: | |
|
git -C "$GITHUB_WORKSPACE/build_dir" checkout -b github-testing |
|
cd $DRUPAL_DIR |
|
composer config repositories.local path "$GITHUB_WORKSPACE/build_dir" |
|
composer config minimum-stability dev |
|
composer require "islandora/islandora:dev-github-testing as dev-2.x" |
|
|
|
- name: Install modules |
|
run: | |
|
cd $DRUPAL_DIR/web |
|
drush --uri=127.0.0.1:8282 en -y islandora_audio islandora_breadcrumbs islandora_iiif islandora_image islandora_video islandora_text_extraction_defaults |
|
|
|
- name: Copy PHPunit file |
|
run: cp $PHPUNIT_FILE $DRUPAL_DIR/web/core/phpunit.xml |
|
|
|
- name: Test scripts |
|
run: $SCRIPT_DIR/travis_scripts.sh |
|
|
|
- name: Start chromedriver |
|
if: matrix.test-suite == 'functional-javascript' |
|
run: |- |
|
/usr/local/share/chromedriver-linux64/chromedriver \ |
|
--log-path=/tmp/chromedriver.log \ |
|
--verbose \ |
|
--allowed-ips= \ |
|
--allowed-origins=* & |
|
|
|
- name: PHPUNIT tests |
|
run: | |
|
cd $DRUPAL_DIR/web/core |
|
$DRUPAL_DIR/vendor/bin/phpunit --verbose --testsuite "${{ matrix.test-suite }}" |
|
|
|
- name: Print chromedriver logs |
|
if: matrix.test-suite == 'functional-javascript' |
|
run: cat /tmp/chromedriver.log
|
|
|