File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,17 @@ matrix:
1515 - env : ARCH=x86_64
1616
1717install :
18+ - # Setup the build env
1819 - docker build -t ${DOCKER_USERNAME}/linuxdeploy-plugin-python:${ARCH} --build-arg Arch=${ARCH} .travis
1920
2021script :
22+ - # Build the AppImages
2123 - docker run --cap-add SYS_ADMIN --device /dev/fuse --mount src=$PWD,dst=/work,type=bind ${DOCKER_USERNAME}/linuxdeploy-plugin-python:${ARCH}
22- - python3 -m tests
24+ - # Test the Python AppImages
25+ - mkdir -p home/test/.local/lib/python2.7/site-packages
26+ - mkdir -p home/test/.local/lib/python3.7/site-packages
27+ - HOME=$PWD/home/test USER=test PATH="$PWD/home/test/.local/bin:$PATH" python3 -m tests
2328
2429after_success :
30+ - # Upload the AppImages
2531 - ./.travis/after-success.sh
You can’t perform that action at this time.
0 commit comments