Skip to content

Commit

Permalink
test: test
Browse files Browse the repository at this point in the history
  • Loading branch information
MaferMazu committed Aug 16, 2024
1 parent 4e206b1 commit 1cc8d01
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
# tutor_version: ["Redwood", "Quince", "Palm", "Olive"]
tutor_version: ["<19.0.0", "<18.0.0", "<17.0.0", "<16.0.0"]
tutor_version: ["<16.0.0"]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -20,6 +20,13 @@ jobs:
TUTOR_ROOT="$(pwd)" tutor --version
TUTOR_ROOT="$(pwd)" tutor config save
- name: Set up SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
- name: Run integration tests
run: |
TUTOR_ROOT="$(pwd)" tutor plugins enable picasso
Expand All @@ -34,12 +41,13 @@ jobs:
echo " repo: [email protected]:eduNEXT/ednx-saas-themes.git" | tee -a ./config.yml
echo " version: master" | tee -a ./config.yml
echo "PICASSO_EXTRA_COMMANDS:" | tee -a ./config.yml
echo "- tutor plugins update" | tee -a ./config.yml
echo "- tutor plugins index add https://raw.githubusercontent.com/eduNEXT/tutor-plugin-indexes/main/" | tee -a ./config.yml
echo "- tutor plugins install mfe mfe_extensions aspects" | tee -a ./config.yml
echo "- tutor plugins enable mfe mfe_extensions aspects" | tee -a ./config.yml
echo "- tutor config save" | tee -a ./config.yml
TUTOR_ROOT="$(pwd)" tutor config save
TUTOR_ROOT="$(pwd)" tutor picasso run-extra-commands
TUTOR_ROOT="$(pwd)" tutor picasso enable-themes
TUTOR_ROOT="$(pwd)" tutor picasso enable-private-packages
TUTOR_ROOT="$(pwd)" tutor picasso run-extra-commands

0 comments on commit 1cc8d01

Please sign in to comment.