memories/scripts/ci-test.sh

53 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
# Build vue
cd apps/memories
npm i
cp ../../vue.zip .
2022-10-29 22:59:20 +00:00
unzip -qq vue.zip
cd ../..
# Speed up loads
php occ app:disable comments
php occ app:disable contactsinteraction:
php occ app:disable dashboard
php occ app:disable weather_status
php occ app:disable user_status
php occ app:disable updatenotification
php occ app:disable systemtags
php occ app:disable files_sharing
# Enable apps
php occ app:enable --force viewer
php occ app:enable --force memories
set -e
# Set debug mode and start dev server
php occ config:system:set --type bool --value true debug
php -S localhost:8080 &
# Get test photo files
cd data/admin/files
2023-02-06 01:20:40 +00:00
wget https://github.com/pulsejet/memories-assets/raw/main/Files.zip
unzip Files.zip
cd ../../..
2022-10-20 21:45:35 +00:00
# Setup
cd apps/memories
make exiftool
cd ../..
# Index
php occ files:scan --all
php occ memories:index
2022-10-25 04:34:26 +00:00
# Set admin timeline path
2022-10-25 04:35:19 +00:00
php occ user:setting admin memories timelinePath "/Photos"
2022-10-25 04:34:26 +00:00
# Run e2e tests
cd apps/memories
sudo npx playwright install-deps chromium
npm run e2e
cd ../..