Skip to content

Commit

Permalink
[ECP-9328] check the contents of the current directory in the make file
Browse files Browse the repository at this point in the history
  • Loading branch information
sushmita committed Sep 11, 2024
1 parent 7afb63c commit 1085a3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .github/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ magento:

# Plugin install
install:
ls -la

# Configure composer
echo "Configuring Composer with additional repositories"
composer config repositories.hyva-themes/hyva-checkout git git@gitlab.hyva.io:hyva-checkout/checkout.git
Expand All @@ -23,6 +25,7 @@ install:

# Install Hyva compatibility module
echo "Installing Hyva compatibility module"
# TODO: Update the branch to current branch
composer require adyen/module-hyva-checkout:dev-develop

bin/magento module:enable --all
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,7 @@ jobs:
run: docker exec magento2-hyva-container make sys-check

- name: Install plugin
run: |
docker exec -u www-data magento2-hyva-container make plugin
# Set up SSH config for gitlab.hyva.io
echo "$SSH_PRIVATE_KEY" >> /root/.ssh/hyva_id_rsa
chmod 600 /root/.ssh/hyva_id_rsa
ssh-keyscan gitlab.hyva.io >> /root/.ssh/known_hosts
echo "Host gitlab.hyva.io" >> /root/.ssh/config && \
echo " StrictHostKeyChecking no" >> /root/.ssh/config && \
echo " IdentityFile /root/.ssh/hyva_id_rsa" >> /root/.ssh/config && \
chmod 600 /root/.ssh/config
run: docker exec -u www-data magento2-hyva-container make plugin

- name: Kill Cron Jobs
run: docker exec magento2-hyva-container /etc/init.d/cron stop
Expand Down

0 comments on commit 1085a3b

Please sign in to comment.