export logs with travis

This commit is contained in:
VirtuBox
2019-08-06 01:49:13 +02:00
parent 13ebe2af3f
commit d0799a08e7
5 changed files with 6 additions and 13 deletions

View File

@@ -54,5 +54,7 @@ script:
- sudo wo stack upgrade --composer --no-prompt
- sudo wo update --travis
- sudo wo stack status
- sudo tar -I pigz -cf /var/log/wo
- curl --progress-bar --upload-file wordops.tar.gz https://transfer.vtbox.net/$(basename "$1") && echo ""; } | tee -a $HOME/.transfer.log && echo ""
- echo "yes" | sudo wo stack purge --all
- sudo bash install --purge

View File

@@ -7,10 +7,10 @@
# Copyright (c) 2019 - WordOps
# This script is licensed under M.I.T
# -------------------------------------------------------------------------
# Version 3.9.7 - 2019-08-02
# Version 3.9.7.1 - 2019-08-06
# -------------------------------------------------------------------------
readonly wo_version_old="2.2.3"
readonly wo_version_new="3.9.7"
readonly wo_version_new="3.9.7.1"
# CONTENTS
# ---
# 1. VARIABLES AND DECLARATIONS

View File

@@ -56,7 +56,7 @@ if not os.path.isfile('/root/.gitconfig'):
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
setup(name='wo',
version='3.9.7',
version='3.9.7.1',
description=long_description,
long_description=long_description,
classifiers=[],

View File

@@ -957,15 +957,6 @@ def site_package_check(self, stype):
out=wo_nginx)
wo_nginx.close()
if os.path.isfile("/etc/nginx/conf.d/upstream.conf"):
if not WOFileUtils.grep(self, "/etc/nginx/conf.d/upstream.conf",
"php73"):
with open("/etc/nginx/conf.d/upstream.conf", "a") as php_file:
php_file.write("upstream php73 {\nserver"
"unix:/var/run/php/php73-fpm.sock;\n}\n"
"upstream debug73"
" {\nserver 127.0.0.1:9173;\n}\n")
return(stack.install(apt_packages=apt_packages, packages=packages,
disp_msg=False))

View File

@@ -10,7 +10,7 @@ class WOVariables():
"""Intialization of core variables"""
# WordOps version
wo_version = "3.9.7"
wo_version = "3.9.7.1"
# WordOps packages versions
wo_wp_cli = "2.2.0"
wo_adminer = "4.7.2"