Updated with new Ubuntu zip instructions.

This commit is contained in:
NissimHadar 2019-04-23 16:51:27 -07:00
parent e755e717b1
commit 70531bca52

View file

@ -122,7 +122,7 @@ cd ..\..\qt5-build
nmake
nmake install
#### Uploading
Create a tar file called qt5-install.tar from the qt5-install folder (e.g. using 7-zip)
Create a gzip file called qt5-install.tar.gz from qt5-install.tar folder (e.g. using 7-zip)
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Windows/
@ -143,9 +143,21 @@ cd qt5-build
make
make install
#### Uploading
1. Return to the home folder
`cd ..`
tar -zcvf qt5-install.tar.gz qt5-install
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/
1. Open a python 3 shell
`python3`
1. Run the following snippet:
`import os`
`import tarfile`
`filename=tarfile.open("qt5-install.tar.gz", "w:gz"))`
`filename.add("qt5-install", os.path.basename("qt5-install"))`
`exit()`
1. Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/
### Mac
git clone --recursive git://code.qt.io/qt/qt5.git -b 5.12.3 --single-branch
@ -163,7 +175,7 @@ cd ../qt5-build
make
make install
#### Uploading
tar -zcvf qt5-install.tar.gz qt5-install
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Mac/
## Problems