Skip to content

Commit

Permalink
documenting current build procedure (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Aug 21, 2018
1 parent 768d158 commit 3540c98
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
46 changes: 46 additions & 0 deletions README_build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# vcell-solvers
Virtual Cell solvers [virtualcell/vcell-solvers](https://github.com/virtualcell/vcell-solvers) is a collection of numerical simulation codes used in the Virtual Cell framework [virtualcell/vcell](https://github.com/virtualcell/vcell)).

## The Virtual Cell Project
The Virtual Cell is a modeling and simulation framework for computational biology. For details see http://vcell.org and http://github.com/virtualcell.

## Building VCell Solvers
### Using VirtualBox and Vagrant
* git clone https://github.com/virtualcell/vcell.git
* cd vcell/VagrantBoxes
### Building for Linux (64 bit)
[details](VagrantBoxes/linux64/README.md)

```bash
$ cd linux64
$ vagrant up
$ vagrant ssh -c /vagrant_numerics/build.sh
$ vagrant halt
```
### Building for Linux (32 bit)
[details](VagrantBoxes/linux32/README.md)

```bash
$ cd linux32
$ vagrant up
$ vagrant ssh -c /vagrant_numerics/build.sh
$ vagrant halt
```
### Building for Macos on a Mac **Apple only allows a Mac VM to run on Apple hardware**
[details}(VagrantBoxes/mac64/README.md)

```bash
$ cd mac64
$ vagrant up
$ vagrant ssh -c /vagrant/build.sh
$ vagrant halt
```
### Building for Windows (64 bit) on Windows
[details: including building on other platforms](VagrantBoxes/win64/README.md)

```bash
$ cd win64
$ vagrant up
$ vagrant powershell -c \vagrant\build.sh
$ vagrant halt
```
22 changes: 22 additions & 0 deletions README_localSolverBuilds.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
##local solver builds

##Travis-CI
Travis-CI is used for builds of standalone solvers for Linux and macOS.
see **<root>/.travis.yml**


###Travis-CI configuration for Linux


###Travis-CI build debugging for Linux

###Travis-CI configuration for macOS

###Travis-CI build debugging for macOS

##Appveyor
Appveyor is used for builds of standalone solvers for Windows.

###Appveyor configuration for Windows

###Appveyor debugging for Windows

0 comments on commit 3540c98

Please sign in to comment.