├── .gitignore ├── LICENSE ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── jitsi-upload-integrations.install ├── postinst ├── rules └── source │ └── format ├── dropbox ├── dropbox_uploader.sh └── testUnit.sh ├── jitsi_uploader.sh └── resources └── jenkins ├── build.sh └── release.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/jitsi-upload-integrations.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/debian/jitsi-upload-integrations.install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | %: 3 | dh $@ -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dropbox/dropbox_uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/dropbox/dropbox_uploader.sh -------------------------------------------------------------------------------- /dropbox/testUnit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/dropbox/testUnit.sh -------------------------------------------------------------------------------- /jitsi_uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/jitsi_uploader.sh -------------------------------------------------------------------------------- /resources/jenkins/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | cd $WORKSPACE/ 6 | #TODO: someday run integration tools tests 7 | -------------------------------------------------------------------------------- /resources/jenkins/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jitsi-upload-integrations/HEAD/resources/jenkins/release.sh --------------------------------------------------------------------------------