|
5 | 5 | The madsim project is building a tokio-like (but not 100% compatible) deterministic runtime.
|
6 | 6 | This fork modifies the original project to produce a drop-in replacement for tokio.
|
7 | 7 |
|
| 8 | +## How to upgrade the tokio version: |
| 9 | + |
| 10 | +1. Clone the tokio fork, add an upstream remote, and fetch |
| 11 | + |
| 12 | + $ git clone git@github.com:MystenLabs/tokio-msim-fork.git |
| 13 | + $ cd tokio-msim-fork |
| 14 | + $ git remote add upstream git@github.com:tokio-rs/tokio.git |
| 15 | + $ git fetch upstream --tags |
| 16 | + |
| 17 | +2. See what our current version of tokio is - don't just look in Cargo.toml since we can be ahead of the version requested there. |
| 18 | + |
| 19 | + # cd sui |
| 20 | + # cargo tree -i tokio --depth 0 |
| 21 | + |
| 22 | +2. Now rebase the fork onto the tokio release you want to use. |
| 23 | + |
| 24 | + # make a new branch for the version we want to upgrade TO |
| 25 | + # start the branch from the current version, that we are upgrading FROM |
| 26 | + $ git checkout -b msim-1.43.0 msim-1.38.1 |
| 27 | + |
| 28 | + # and rebase using the version tag |
| 29 | + $ git rebase tokio-1.43.0 |
| 30 | + |
| 31 | + # push the rebased version to our repo and remember the current commit |
| 32 | + $ git push |
| 33 | + $ FORK_COMMIT=`git rev-parse HEAD` |
| 34 | + |
| 35 | +3. Usually, there are no merge conflicts. If there are, the scope of the fork is limited and things should be fixable. |
| 36 | + |
| 37 | +4. Now, in this repo |
| 38 | + |
| 39 | + 1. Edit the version in `msim-tokio/Cargo.toml` to match the version we are upgrading to (`1.43.0` in this example). |
| 40 | + 2. Find all references to `https://github.com/MystenLabs/tokio-msim-fork.git` in Cargo.toml files in this repo and update the `rev` param to `FORK_COMMIT`. |
| 41 | + |
| 42 | +5. Now, in the sui repo, update the tokio version by editing Cargo.toml, or by running: |
| 43 | + |
| 44 | + $ cargo update -p tokio --precise 1.43.0 |
| 45 | + |
| 46 | +6. Test all the changes against your local msim repo - if there are build errors the rebasing may have gone wrong. |
| 47 | + |
| 48 | +- install simtest (if you already have it, skip this step): https://github.com/MystenLabs/sui/blob/main/scripts/simtest/install.sh |
| 49 | + |
| 50 | + $ LOCAL_MSIM_PATH=/path/to/mysten-sim/repo cargo simtest |
| 51 | + |
8 | 52 | ## Usage:
|
9 | 53 |
|
10 | 54 | TODO
|
0 commit comments