2020-09-22 13:53:45 -04:00
|
|
|
name: test-migrations
|
|
|
|
|
2022-02-13 08:03:41 -05:00
|
|
|
on: [push, pull_request]
|
2020-09-22 13:53:45 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-02-13 08:03:41 -05:00
|
|
|
if: ${{ github.ref != 'refs/heads/l10n_development' }}
|
2021-03-07 11:31:51 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2020-09-22 13:53:45 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-04 08:26:39 -05:00
|
|
|
php: ['7.4', '8.0', '8.1']
|
2020-09-22 13:53:45 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
2021-03-07 11:31:51 -05:00
|
|
|
- name: Setup PHP
|
2021-11-04 18:29:36 -04:00
|
|
|
uses: shivammathur/setup-php@v2
|
2021-03-07 11:31:51 -05:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php }}
|
|
|
|
extensions: gd, mbstring, json, curl, xml, mysql, ldap
|
|
|
|
|
2020-09-22 13:53:45 -04:00
|
|
|
- name: Get Composer Cache Directory
|
|
|
|
id: composer-cache
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
|
|
|
|
- name: Cache composer packages
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-composer-${{ matrix.php }}
|
|
|
|
|
|
|
|
- name: Start MySQL
|
|
|
|
run: |
|
2021-12-15 08:56:21 -05:00
|
|
|
sudo systemctl start mysql
|
2020-09-22 13:53:45 -04:00
|
|
|
|
|
|
|
- name: Create database & user
|
|
|
|
run: |
|
|
|
|
mysql -uroot -proot -e 'CREATE DATABASE IF NOT EXISTS `bookstack-test`;'
|
2021-03-07 11:31:51 -05:00
|
|
|
mysql -uroot -proot -e "CREATE USER 'bookstack-test'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bookstack-test';"
|
2020-09-22 13:53:45 -04:00
|
|
|
mysql -uroot -proot -e "GRANT ALL ON \`bookstack-test\`.* TO 'bookstack-test'@'localhost';"
|
|
|
|
mysql -uroot -proot -e 'FLUSH PRIVILEGES;'
|
|
|
|
|
|
|
|
- name: Install composer dependencies
|
|
|
|
run: composer install --prefer-dist --no-interaction --ansi
|
|
|
|
|
|
|
|
- name: Start migration test
|
|
|
|
run: |
|
|
|
|
php${{ matrix.php }} artisan migrate --force -n --database=mysql_testing
|
|
|
|
|
|
|
|
- name: Start migration:rollback test
|
|
|
|
run: |
|
|
|
|
php${{ matrix.php }} artisan migrate:rollback --force -n --database=mysql_testing
|
|
|
|
|
|
|
|
- name: Start migration rerun test
|
|
|
|
run: |
|
|
|
|
php${{ matrix.php }} artisan migrate --force -n --database=mysql_testing
|