We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa1877e commit fb5366fCopy full SHA for fb5366f
1 file changed
.travis.yml
@@ -15,11 +15,17 @@ matrix:
15
- env: ARCH=x86_64
16
17
install:
18
+ - # Setup the build env
19
- docker build -t ${DOCKER_USERNAME}/linuxdeploy-plugin-python:${ARCH} --build-arg Arch=${ARCH} .travis
20
21
script:
22
+ - # Build the AppImages
23
- docker run --cap-add SYS_ADMIN --device /dev/fuse --mount src=$PWD,dst=/work,type=bind ${DOCKER_USERNAME}/linuxdeploy-plugin-python:${ARCH}
- - 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
28
29
after_success:
30
+ - # Upload the AppImages
31
- ./.travis/after-success.sh
0 commit comments