1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/.github/workflows/commit-tests.yml
2021-08-23 15:00:31 -04:00

40 lines
1.4 KiB
YAML

name: commit-tests
on: [push]
jobs:
# MiaB-LDAP connected to a remote Nextcloud
remote-nextcloud-docker:
runs-on: ubuntu-18.04
env:
PRIMARY_HOSTNAME: box1.abc.com
FEATURE_MUNIN: false
# github specific: php-xsl is a virtual package provided by php-xml
PHP_XSL_PACKAGE: php-xml
steps:
- uses: actions/checkout@v2
# the github image comes preinstalled with multiple php versions
# and it sets the system php to the latest version. MIAB requires
# php 7.2 (the default on a new ubuntu 18 install)
- run: sudo update-alternatives --set php /usr/bin/php7.2
- name: setup
run: sudo -E tests/system-setup/remote-nextcloud-docker.sh upgrade basic
- name: test-runner
run: sudo -E tests/runner.sh -dumpoutput -no-smtp-remote default remote-nextcloud upgrade-basic
# Upgrade from upstream install
upgrade-from-upstream:
runs-on: ubuntu-18.04
env:
PRIMARY_HOSTNAME: box2.abc.com
UPSTREAM_TAG: main
PHP_XSL_PACKAGE: php-xml
steps:
- uses: actions/checkout@v2
- run: sudo update-alternatives --set php /usr/bin/php7.2
- run: sudo apt-get install -y php-xml
- name: setup
run: sudo -E tests/system-setup/upgrade-from-upstream.sh basic totpuser
- name: test-runner
run: sudo -E tests/runner.sh -dumpoutput -no-smtp-remote upgrade-basic upgrade-totpuser default