https://github.com/mozart/mozart2
Mozart Programming System v2
https://github.com/mozart/mozart2
Last synced: 5 months ago
JSON representation
Mozart Programming System v2
- Host: GitHub
- URL: https://github.com/mozart/mozart2
- Owner: mozart
- License: bsd-2-clause
- Created: 2011-12-05T14:02:43.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2025-02-10T16:22:41.000Z (9 months ago)
- Last Synced: 2025-02-25T11:49:10.830Z (9 months ago)
- Language: Oz
- Homepage: http://mozart.github.io/
- Size: 39.7 MB
- Stars: 574
- Watchers: 55
- Forks: 101
- Open Issues: 85
-
Metadata Files:
- Readme: README.CI.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-programming-languages - Oz - Oz is a multiparadigm programming language, developed in the Programming Systems Lab at Université catholique de Louvain, for programming language education. It has a canonical textbook: Concepts, Techniques, and Models of Computer Programming. (Uncategorized / Uncategorized)
README
# Mozart2 Continuous Integration
We use a continuous integration system for Mozart2. This means that at every
change made in source code, we check if it did not break the build.
More specifically, every commit sent to this repository triggers two builds. We
use [Travis CI](https://travis-ci.org/) to build the pre-generated sources and Mozart2 on Linux. We also use
[Appveyor](https://www.appveyor.com/) to build on Windows. If you wish to use those tools, you can fork this
repository and active both Appveyor and Travis to your fork. The Travis CI job is probably
the easiest way to rebuild the pre-generated sources.
## Travis CI
[](https://travis-ci.org/mozart/mozart2)
The build process is written in [.travis.yml](.travis.yml). Specifically, we use the
[trusty](https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system) environnement. Currently, we implement a build on
Linux. We create two jobs. The first one, builds the pre-generated sources
with LLVM and CLANG. It then compares the generated sources with those already
in the repository. If this job succeed, a second one is started to build
Mozart2.
## Appveyor
[](https://ci.appveyor.com/project/layus/mozart2)
The build process is written in [appveyor.yml](appveyor.yml). It uses mainly MingW to build.
The build uploads a Windows installer as an artifact.