Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mysten-service] 6/n update the sui-services dockerfile with new service #15873

Merged
merged 2 commits into from
Jan 25, 2024

Commits on Jan 23, 2024

  1. Configuration menu
    Copy the full SHA
    da1440f View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. [mysten-service] 7/n add new service as member of sui workspace (#15876)

    ## Description 
    
    Describe the changes or additions included in this PR.
    
    ## Test Plan 
    ```
    » RUST_LOG=debug cargo r -- s i --path ../my-dumb-service                                         
       Compiling suiop-cli v0.1.5 (/Users/jkjensen/mysten/sui/crates/suiop-cli)                                                                    
        Finished dev [unoptimized + debuginfo] target(s) in 2.62s
         Running `/Users/jkjensen/mysten/sui/target/debug/suiop s i --path ../my-dumb-service`                                                     
    2024-01-23T20:39:35.910330Z  INFO suioplib::cli::service::init: creating rust service in ../my-dumb-service                                    
    2024-01-23T20:39:35.910729Z DEBUG suioplib::cli::service::init: sui service: true  
    ```
    
    ```
    diff --git a/Cargo.toml b/Cargo.toml
    index afa17929a1..b194896523 100644
    --- a/Cargo.toml
    +++ b/Cargo.toml
    @@ -187,7 +187,7 @@ members = [
       "sui-execution/v0/sui-verifier",
       "sui-execution/v1/sui-adapter",
       "sui-execution/v1/sui-move-natives",
    -  "sui-execution/v1/sui-verifier",
    +  "sui-execution/v1/sui-verifier", "my-dumb-service",
     ]
     
    ```
    
    ---
    If your changes are not user-facing and do not break anything, you can
    skip the following section. Otherwise, please briefly describe what has
    changed under the Release Notes section.
    
    ### Type of Change (Check all that apply)
    
    - [ ] protocol change
    - [ ] user-visible impact
    - [ ] breaking change for a client SDKs
    - [ ] breaking change for FNs (FN binary must upgrade)
    - [ ] breaking change for validators or node operators (must upgrade
    binaries)
    - [ ] breaking change for on-chain data layout
    - [ ] necessitate either a data wipe or data migration
    
    ### Release notes
    after-ephemera authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    de439da View commit details
    Browse the repository at this point in the history