Skip to content

Latest commit

 

History

History
170 lines (123 loc) · 4.96 KB

README.md

File metadata and controls

170 lines (123 loc) · 4.96 KB

Contributing Quick Start

Contributor Copyright Assignment Agreement

Before submitting your changes to the moon project, you must sign Contributor Copyright Assignment Agreement (CCAA), depending on who owns the copyright to your work:

Setup

The first thing is to install Rust toolchain and MoonBit toolchain, if you have not setup, referring to:

How to Build and Test

On Unix

cargo build
cargo test

The tests for moon depend on expect-test. If your changes affect the output of the tests, you can update the expected output:

env UPDATE_EXPECT=1 cargo test

On Windows

cargo build
cargo test
$env:UPDATE_EXPECT=1; cargo test; Remove-Item Env:\UPDATE_EXPECT

How to Install

The following command will install moon from source code, it will be installed at ~/.cargo/bin/.(note that the original moon install via MoonBit CLI Tools is at ~/.moon/bin/)

Release Install

cargo install --path ./crates/moon

Debug Install (faster)

cargo install --path ./crates/moon --debug
# more faster
cargo install --path ./crates/moon --debug --offline

Source Code Overview

The following content is based on a28d2f1a, which may outdated as the project develops.

  • crates/moon

    • src/cli: the command line interface of moon
      • src/cli/mooncake_adapter.rs: forwards to the mooncake binary
      • src/cli/generate_test_driver.rs: as the name suggests
    • tests/test_cases/mod.rs: all end-to-end tests are located in this file
  • crates/moonbuild

    • src/{check, gen, build, bundle, entry, runtest}: generate commands and n2 state according to moon.mod.json and moon.pkg.json
    • src/bundle.rs: only for moonbitlang/core, not visible to users
    • src/bench.rs: generates a project for benchmarking, will be moved to moon new
    • src/dry_run.rs: prints commands without executing them, mainly used by end-to-end tests.
    • src/expect.rs: the implementation of expect tests in moon
    • src/upgrade.rs: for moon upgrade. We hope to move it to another binary crate, not mooncake, since depending on network in moonbuild does not make sense.
  • crates/mooncake: package manager

    • src/pkg/add: moon add
    • src/pkg/{install, sync}: moon install
    • src/pkg/remove: moon remove
    • src/pkg/tree: moon tree
    • src/registry/online.rs: downloads packages from mooncakes.io
    • src/resolver/mvs.rs: Go-like minimal version selection algorithm.
  • crates/moonutil: currently not well organized, needs cleanup

    • src/common.rs: common definitions shared by other crates
    • src/scan.rs: scans the project directory to gather all structural information
    • src/moon_dir.rs: gets the .moon, core, etc. directory paths and handles related environment variables
    • src/build.rs: for moon version

Before PR

It's recommended to run the following command before you submit a PR, which may help discover some potential CI failure ASAP

cargo fmt

cargo clippy --all-targets --all-features -- -D warnings

cargo test

We use typos to avoid potential typos, you can also download and run it locally before PR.

Before Merging

Maintain Semi-Linear History

To keep a clean and readable Git history, we follow a semi-linear history pattern. A semi-linear history looks like this:

$ git log --oneline --graph
*
|\
| *
|/
*
|\
| *
| *
|/
*

A semi-linear history improves readability, simplifies bug tracking.

Until GitHub supports this natively (see discussion: Support semi-linear history), we use rebase workflow and create a merge commit when merging a pull request to achieve a semi-linear history.

Updating Branches

There are two ways to update branches: locally and on the GitHub Pull Request page.

Updating Branches Locally

  1. Fetch the latest changes:
    git fetch
    
  2. Rebase your branch:
    git rebase origin/main
    

Updating Branches on GitHub

When updating a branch on the GitHub Pull Request page, always use the "Update with Rebase" option instead of "Update with merge commit." This helps in maintaining the desired semi-linear history.