-
-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit a6014a9.
- Loading branch information
Showing
3 changed files
with
191 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Test OpenMage 20.0.x | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-openmage-20-0-marix: | ||
name: OpenMage ${{ matrix.openmage_version }} / PHP ${{ matrix.php_version }} / MySQL ${{ matrix.mysql_version }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
openmage_version: ["20.0.20"] | ||
php_version: ["8.1", "7.4"] | ||
mysql_version: ["8.0", "5.7"] | ||
|
||
services: | ||
mysql: | ||
image: mysql:${{ matrix.mysql_version }} | ||
env: | ||
MYSQL_ROOT_PASSWORD: root | ||
MYSQL_DATABASE: magento_test_db | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Linux Setup | ||
run: ./.github/workflows/linux-setup.sh | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php_version }} | ||
extensions: yaml | ||
coverage: none | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/composer | ||
vendor | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress | ||
|
||
- name: Validate mysql service | ||
run: | | ||
echo "Checking mysql service" | ||
sudo apt-get install -y mysql-client | ||
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -proot -e "SHOW DATABASES" | ||
- name: Install OpenMage | ||
run: | | ||
php bin/n98-magerun --no-interaction install \ | ||
--magentoVersionByName="openmage-${{ matrix.openmage_version }}" \ | ||
--installationFolder="./magento" \ | ||
--dbHost="127.0.0.1" \ | ||
--dbPort="${{ job.services.mysql.ports['3306'] }}" \ | ||
--dbUser="root" \ | ||
--dbPass="root" \ | ||
--dbName="magento_test_db" \ | ||
--installSampleData=no \ | ||
--useDefaultConfigParams=yes \ | ||
--baseUrl="http://magento.local/" | ||
env: | ||
COMPOSER_VENDOR_PATH : "${{ github.workspace }}/magento/vendor" | ||
|
||
- name: Set Magento root environment variable | ||
run: echo "N98_MAGERUN_TEST_MAGENTO_ROOT=${{ github.workspace }}/magento" >> $GITHUB_ENV | ||
|
||
- name: Run tests | ||
run: php -f vendor/bin/phpunit | ||
env: | ||
COMPOSER_VENDOR_PATH : "${{ github.workspace }}/magento/vendor" | ||
|
||
- name: Report coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
file: ./build/coverage/clover.xml | ||
|
||
- name: Run functional tests | ||
run: bats tests/bats/functional.bats | ||
env: | ||
N98_MAGERUN_BIN: "${{ github.workspace }}/bin/n98-magerun" | ||
N98_MAGERUN_TEST_MAGENTO_ROOT: "${{ github.workspace }}/magento" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
|
||
name: Test OpenMage 20.1.x | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-openmage-20-1-matrix: | ||
name: OpenMage ${{ matrix.openmage_version }} / PHP ${{ matrix.php_version }} / MySQL ${{ matrix.mysql_version }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
openmage_version: ["20.1.0"] | ||
php_version: ["8.1", "7.4"] | ||
mysql_version: ["8.0", "5.7"] | ||
|
||
services: | ||
mysql: | ||
image: mysql:${{ matrix.mysql_version }} | ||
env: | ||
MYSQL_ROOT_PASSWORD: root | ||
MYSQL_DATABASE: magento_test_db | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Linux Setup | ||
run: ./.github/workflows/linux-setup.sh | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php_version }} | ||
extensions: yaml | ||
coverage: none | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/composer | ||
vendor | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress | ||
|
||
- name: Validate mysql service | ||
run: | | ||
echo "Checking mysql service" | ||
sudo apt-get install -y mysql-client | ||
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -proot -e "SHOW DATABASES" | ||
- name: Install OpenMage | ||
run: | | ||
php bin/n98-magerun --no-interaction install \ | ||
--magentoVersionByName="openmage-${{ matrix.openmage_version }}" \ | ||
--installationFolder="./magento" \ | ||
--dbHost="127.0.0.1" \ | ||
--dbPort="${{ job.services.mysql.ports['3306'] }}" \ | ||
--dbUser="root" \ | ||
--dbPass="root" \ | ||
--dbName="magento_test_db" \ | ||
--installSampleData=no \ | ||
--useDefaultConfigParams=yes \ | ||
--baseUrl="http://magento.local/" | ||
env: | ||
COMPOSER_VENDOR_PATH : "${{ github.workspace }}/magento/vendor" | ||
|
||
- name: Set Magento root environment variable | ||
run: echo "N98_MAGERUN_TEST_MAGENTO_ROOT=${{ github.workspace }}/magento" >> $GITHUB_ENV | ||
|
||
- name: Run tests | ||
run: php -f vendor/bin/phpunit | ||
env: | ||
COMPOSER_VENDOR_PATH : "${{ github.workspace }}/magento/vendor" | ||
|
||
# Temporary allow tests to fail until code in OpenMage is fixed | ||
continue-on-error: true | ||
|
||
- name: Report coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
file: ./build/coverage/clover.xml | ||
|
||
- name: Run functional tests | ||
run: bats tests/bats/functional.bats | ||
env: | ||
N98_MAGERUN_BIN: "${{ github.workspace }}/bin/n98-magerun" | ||
N98_MAGERUN_TEST_MAGENTO_ROOT: "${{ github.workspace }}/magento" | ||
|
||
# Temporary allow tests to fail until code in OpenMage is fixed | ||
continue-on-error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters