Skip to content
/ kapalin Public

Automated build system and testing framework for MATLAB with an environment manager

Notifications You must be signed in to change notification settings

sg-s/kapalin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kapalin

automated build system and testing framework for MATLAB, with a envvironment manager

Using the environment manager

This package contains a class called env, which is a fully-featured environment manager for MATLAB (like conda, or virtualenv)

Save your current environment for use later

env.save('default')

Create a new, empty environment

env.create('name','testing')
% You can now install whatever you want
% here without affecting your primary
% environment

Switch to that environment

env.activate('testing')

List all available environments

env.list

which will show

*testing
default

Note that the asterix indicates the currently active environment.

Using kapalin

kapalin assumes the following things:

  1. Your code is hosted on github
  2. You are writing MATLAB code, and your ultimately want to distribute a MATLAB toolbox
  3. You will host the toolbox files (*.mltbx) on Github as a release.
  4. You have installed github-release on the computer you are testing on

About

Automated build system and testing framework for MATLAB with an environment manager

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages