mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
# Conflicts: # .gitignore # management/auth.py # management/daemon.py # management/mail_log.py # management/mailconfig.py # management/mfa.py # management/ssl_certificates.py # management/status_checks.py # management/utils.py # management/web_update.py # setup/mail-postfix.sh # setup/migrate.py # setup/preflight.sh # setup/webmail.sh # tests/test_mail.py # tools/editconf.py
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
name: commit-tests
|
|
on: [push, workflow_dispatch]
|
|
jobs:
|
|
# MiaB-LDAP using encryption-at-rest and connected to a remote Nextcloud
|
|
remote-nextcloud-docker-ehdd:
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
PRIMARY_HOSTNAME: box1.abc.com
|
|
EHDD_KEYFILE: /tmp/keyfile
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: create ehdd keyfile
|
|
run: sudo -E echo -n "secret" >/tmp/keyfile
|
|
- name: setup
|
|
run: sudo -E tests/system-setup/remote-nextcloud-docker.sh
|
|
- name: test-runner
|
|
run: sudo -E tests/runner.sh -dumpoutput -no-smtp-remote remote-nextcloud ehdd default remote-nextcloud
|
|
- uses: actions/upload-artifact@v3
|
|
if: failure()
|
|
with:
|
|
name: tests-output
|
|
path: tests/out/**/screenshot.png
|
|
if-no-files-found: ignore
|
|
retention-days: 5
|
|
|
|
# install upstream miab, then migrate to miabldap
|
|
upgrade-from-upstream:
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
PRIMARY_HOSTNAME: box2.abc.com
|
|
# TODO: change UPSTREAM_TAG to 'main' once upstream is installable
|
|
UPSTREAM_TAG: v67
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: setup
|
|
run: sudo -E tests/system-setup/upgrade-from-upstream.sh --populate=basic --populate=totpuser
|
|
- name: test-runner
|
|
run: sudo -E tests/runner.sh -dumpoutput -no-smtp-remote upgrade-basic upgrade-totpuser default
|