The packages within the JuliaQuantumControl organization are tightly coupled. Development on any package should happen in conjunction with all other packages.
When developing on a Unix system (WSL is recommended on Windows), you should use this repository to set up a development environment:
git clone git@github.com:JuliaQuantumControl/JuliaQuantumControl.git
cd JuliaQuantumControl
make clone
This will clone all the active project repos within the JuliaQuantumControl organization into a subfolder of JuliaQuantumControl. You may then navigate into any of the project folders for development, e.g.
cd QuantumControl.jl
make test
make devrepl
The Makefile for each project is set up such that testing happens automatically against the current state of all sibling folders (the entire organization). Run just make within each project for available make-targets.
See also the guidelines in CONTRIBUTING.md.
You may also perform some development tasks across the entire organization by using make within the parent JuliaQuantumControl folder. E.g.,
make pull
will pull the current state of all org projects from Github,
make status
will show the state of all checkouts, and
make distclean testall
will run a complete set of tests for the entire organization.
You can also run
make devrepl
for a Julia REPL with the dev-version of all projects available. Note that this is in addition to the development REPL available for each individual project (make devrepl in the project folder), which also has access to the sibling projects.
Working with unregistered packages in Julia is tricky.. Therefore, we have a QuantumControlRegistry to register any packages within the JuliaQuantumControl organization that should not be or are not ready yet for the Julia General Registry.
To add the QuantumControlRegistry to your julia installation, run
pkg> registry add https://github.com/JuliaQuantumControl/QuantumControlRegistry.git
To add packages to QuantumControlRegistry, or create new releases for previously added packages, use the LocalRegistry.register command in the org-level REPL (make devrepl), e.g.,
using LocalRegistry
register("./GRAPELinesearchAnalysis.jl/", registry="QuantumControlRegistry")
See
help?> register
or the LocalRegistry documentation for details.