├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .idea ├── .gitignore ├── editor.xml ├── modules.xml ├── ozy.iml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── RELEASE_NOTES.md ├── conf ├── install.sh └── sample-team-conf.yaml ├── install.sh ├── src ├── app.rs ├── config.rs ├── files.rs ├── installers │ ├── conda.rs │ ├── file.rs │ ├── installer.rs │ ├── mod.rs │ ├── pip.rs │ ├── shell.rs │ ├── single_binary_zip.rs │ ├── symlink.rs │ ├── tarball.rs │ └── zip.rs ├── main.rs └── utils.rs └── test_resource └── unittest.ozy.yaml /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/ozy.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.idea/ozy.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /conf/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/conf/install.sh -------------------------------------------------------------------------------- /conf/sample-team-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/conf/sample-team-conf.yaml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/install.sh -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/files.rs -------------------------------------------------------------------------------- /src/installers/conda.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/conda.rs -------------------------------------------------------------------------------- /src/installers/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/file.rs -------------------------------------------------------------------------------- /src/installers/installer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/installer.rs -------------------------------------------------------------------------------- /src/installers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/mod.rs -------------------------------------------------------------------------------- /src/installers/pip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/pip.rs -------------------------------------------------------------------------------- /src/installers/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/shell.rs -------------------------------------------------------------------------------- /src/installers/single_binary_zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/single_binary_zip.rs -------------------------------------------------------------------------------- /src/installers/symlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/symlink.rs -------------------------------------------------------------------------------- /src/installers/tarball.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/tarball.rs -------------------------------------------------------------------------------- /src/installers/zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/installers/zip.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/src/utils.rs -------------------------------------------------------------------------------- /test_resource/unittest.ozy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquanauts/ozy/HEAD/test_resource/unittest.ozy.yaml --------------------------------------------------------------------------------