From 81786d147a4b2dd31dc6ec4924f3994abc42181d Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 28 Mar 2023 11:50:03 +0200 Subject: [PATCH] Templates: add EVM template --- .gitlab/merge_request_templates/evm.md | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitlab/merge_request_templates/evm.md diff --git a/.gitlab/merge_request_templates/evm.md b/.gitlab/merge_request_templates/evm.md new file mode 100644 index 000000000000..e7d42051d016 --- /dev/null +++ b/.gitlab/merge_request_templates/evm.md @@ -0,0 +1,38 @@ + + +# Context + + + +# Manually testing the MR + +You can always manually test merge request by playing with the debugger: +``` +$ make -f kernels.mk evm_kernel.wasm +$ rlwrap ./octez-smart-rollup-wasm-debugger evm_kernel.wasm --inputs tezt/tests/evm_kernel_inputs.inputs.json +``` + + + +# Checklist + +- [ ] Document the interface of any function added or modified (see the [coding guidelines](https://tezos.gitlab.io/developer/guidelines.html)) +- [ ] Document any change to the user interface, including configuration parameters (see [node configuration](https://tezos.gitlab.io/user/node-configuration.html)) +- [ ] Provide automatic testing (see the [testing guide](https://tezos.gitlab.io/developer/testing.html)). +- [ ] For new features and bug fixes, add an item in the appropriate changelog (`docs/protocols/alpha.rst` for the protocol and the environment, `CHANGES.rst` at the root of the repository for everything else). +- [X] Select suitable reviewers using the `Reviewers` field below. +- [X] Select as `Assignee` the next person who should [take action on that MR](https://tezos.gitlab.io/developer/contributing.html#merge-request-assignees-field) + +/assign me + +/assign_reviewer @picdc @rodibozman @vch9 + +/labels ~kernel::evm + +/milestone %"Deploy Uniswap on EVM smart rollups" -- GitLab