Go to file
Etienne Millon 4041db372f
Merge pull request #1236 from ocaml/fix-1231
Make -p honor test stanzas
2018-09-07 15:41:49 +02:00
.github Setup code owners 2018-08-22 10:45:26 +01:00
bin Fix #1234 and extend watch to DELETE event (#1235) 2018-09-06 18:47:54 +01:00
doc Document --watch flag 2018-09-07 09:46:02 +02:00
editor-integration/emacs emacs: cleanup dune package 2018-09-04 10:49:53 +01:00
example Fix #1132 (#1137) 2018-08-15 09:20:00 +01:00
pkg Convert a few files to markdown 2017-06-02 13:54:23 +01:00
plugin Forbid #require in dune files in OCaml syntax (#938) 2018-07-02 08:17:53 +01:00
src Make -p honor test stanzas 2018-09-07 11:29:35 +02:00
test Make -p honor test stanzas 2018-09-07 11:29:35 +02:00
vendor Do not use opam-installer to copy files (#941) 2018-07-03 10:10:09 +01:00
.gitignore Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
.ocp-indent Add a .ocp-indent file 2017-03-04 10:38:10 +00:00
.travis-ci.sh Use 4.06 to run the testsuite in travis (#1163) 2018-08-22 17:37:58 +01:00
.travis.yml Use 4.06 to run the testsuite in travis (#1163) 2018-08-22 17:37:58 +01:00
CHANGES.md Make -p honor test stanzas 2018-09-07 11:29:35 +02:00
CONTRIBUTING.md Fix typos in source code 2018-07-10 13:05:58 +01:00
HACKING.md Update some outdated file paths in HACKING.md 2018-08-19 12:23:59 +02:00
LICENSE.md Switch to MIT License 2018-05-23 10:44:25 +01:00
MIGRATION.md Refer to migration page from manual and readme 2018-06-25 15:54:32 +06:30
Makefile Make the default build profile be dev 2018-06-28 11:23:10 +01:00
README.md Fix #1040 2018-07-30 12:52:07 +01:00
appveyor.yml Make the default build profile be dev 2018-06-28 11:23:10 +01:00
bootstrap.ml Invert the stdune and dsexp dependency 2018-08-23 11:58:10 +03:00
configure Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
configure.ml Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
dune-project Remvoe -skip-platforms from cram.mll 2018-07-31 13:47:46 +02:00
dune-workspace.dev Update workspace file for 4.07.0 2018-07-15 08:56:13 +02:00
dune.descr Update dune.descr 2018-07-10 15:54:37 +01:00
dune.opam Cleanup the way we detect the library search path (#1226) 2018-09-06 17:37:27 +01:00
install_ocaml.cmd Update AppVeyor to OCaml 4.06.0 2017-11-15 13:53:38 +00:00

README.md

Dune - A composable build system

Dune is a build system designed for OCaml/Reason projects only. It focuses on providing the user with a consistent experience and takes care of most of the low-level details of OCaml compilation. All you have to do is provide a description of your project and dune will do the rest.

The scheme it implements is inspired from the one used inside Jane Street and adapted to the open source world. It has matured over a long time and is used daily by hundreds of developers, which means that it is highly tested and productive.

Dune comes with a manual. If you want to get started without reading too much, you can look at the quick start guide or watch this introduction video.

The example directory contains examples of projects using dune.

Travis status AppVeyor status

Overview

Dune reads project metadata from dune files, which are either static files in a simple S-expression syntax or OCaml scripts. It uses this information to setup build rules, generate configuration files for development tools such as merlin, handle installation, etc...

Dune itself is fast, has very low overhead and supports parallel builds on all platforms. It has no system dependencies: all you need to build dune and packages using dune is OCaml. You don't need make or bash as long as the packages themselves don't use bash explicitly.

Especially, one can install OCaml on Windows with a binary installer and then use only the Windows Console to build dune and packages using dune.

Strengths

Composable

Take n repositories that use dune, arrange them in any way on the file system and the result is still a single repository that dune knows how to build at once.

This make simultaneous development on multiple packages trivial.

Gracefully handles multi-package repositories

Dune knows how to handle repositories containing several packages. When building via opam, it is able to correctly use libraries that were previously installed even if they are already present in the source tree.

The magic invocation is:

$ dune build --only-packages <package-name> @install

Building against several configurations at once

Dune is able to build a given source code repository against several configurations simultaneously. This helps maintaining packages across several versions of OCaml as you can test them all at once without hassle.

This feature should make cross-compilation easy, see details in the roadmap.

This feature requires opam.

Jenga bridge

Jenga is another build system for OCaml that has more advanced features such as polling or much better editor integration. Jenga is more powerful and more complex and as a result has many more dependencies. It is planned to implement a small bridge between the two so that a dune project can build with Jenga using this bridge.

Requirements

Dune requires OCaml version 4.02.3 or greater.

Installation

The recommended way to install dune is via the opam package manager:

$ opam install dune

You can also build it manually with:

$ make release
$ make install

Note however that make install requires the opam-installer tool. Running simply make will build dune using the development settings.

If you do not have make, you can do the following:

$ ocaml bootstrap.ml
$ ./boot.exe
$ ./_build/default/bin/main_dune.exe install dune

Support

If you have questions about dune, you can send an email to ocaml-core@googlegroups.com or open a ticket on github.

Migration from jbuilder

Dune was formerly known as jbuilder. Migration from jbuilder to dune is described in the manual.

Status

Dune is now fairly stable and is used by the majority of packages on opam. The package is still in beta version as we are waiting for the renaming from Jbuilder to dune before releasing version 1.0.0. Note that dune will have backward compatibility with Jbuilder, in particular existing Jbuilder projects will continue to be buildable with dune.