Files
OSIT-Mailman3/tests/generate_tests.sh
Abhilash Raj 7ce2c3f14d Fix the tests.
2018-07-25 23:10:21 -07:00

23 lines
399 B
Bash

#!/bin/sh
if [ "$EVENT_TYPE" = "cron" ] || [ ! -z $DEV ] ; then
echo "Event type is: $EVENT_TYPE"
echo "This is a development version build: $DEV"
TAG="rolling"
fi
cat > docker-test.yaml <<EOF
version: '2'
services:
mailman-core:
image: maxking/mailman-core:rolling
mailman-web:
image: maxking/mailman-web:rolling
environment:
- SECRET_KEY=abcdefghijklmnopqrstuv
EOF