Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Adds configuration file for n98-magerun to provide urls for Magento #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .n98-magerun.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
commands:
N98\Magento\Command\System\CheckCommand:
php:
required-extensions:
- simplexml
- hash
- gd
- dom
- iconv
- curl
- soap
- pdo
- pdo_mysql

N98\Magento\Command\Installer\InstallCommand:
#see https://github.com/netz98/n98-magerun/blame/master/config.yaml
magento-packages:
- name: magento-mirror-1.9.4.1
version: 1.9.4.1
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.4.1.zip
type: zip
shasum: c1045a378aadbb453f0e01a9b1e0234bb9aac749
- name: magento-mirror-1.9.3.10
version: 1.9.3.10
dist:
url: https://github.com/OpenMage/magento-mirror/archive/1.9.3.10.zip
type: zip
shasum: c4eb4a0728154cfdae2781c15d9a1405136efa1e
extra:
sample-data: sample-data-1.9.2.4
1 change: 1 addition & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ echo "Using build directory ${BUILDENV}"

git clone https://github.com/AOEpeople/MageTestStand.git "${BUILDENV}"
cp -rf "${WORKSPACE}" "${BUILDENV}/.modman/"
cp ${BUILDENV}/.n98-magerun.yaml ~/.n98-magerun.yaml
${BUILDENV}/install.sh
if [ -d "${WORKSPACE}/vendor" ] ; then
cp -rf ${WORKSPACE}/vendor/* "${BUILDENV}/vendor/"
Expand Down