Skip to content

Multiple Builds #21

Answered by nrobinson2000
ajowsey asked this question in Q&A
Discussion options

You must be logged in to vote

@ajowsey

You could achieve this by creating a neopo install in each project directory and using the NEOPO_PATH environment variable.

Create two example projects and install neopo in them:

cd /tmp

neopo create project1
NEOPO_PARALLEL=1 NEOPO_PATH="project1/neopo" neopo install

neopo create project2
NEOPO_PARALLEL=1 NEOPO_PATH="project2/neopo" neopo install

Build the two projects simultaneously:

Terminal 1:

cd /tmp/project1
export NEOPO_PATH="$PWD/neopo"
time neopo build -v

Terminal 2:

cd /tmp/project2
export NEOPO_PATH="$PWD/neopo"
time neopo build -v

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ajowsey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants