mirror of https://github.com/smithy-lang/smithy-rs
Sync script needs gradle clean (#1100)
* Sync script needs gradle clean * Update changelogs
This commit is contained in:
parent
dbbacf0398
commit
88aaa3308b
|
@ -10,3 +10,9 @@
|
|||
# references = ["smithy-rs#920"]
|
||||
# meta = { "breaking" = false, "tada" = false, "bug" = false }
|
||||
# author = "rcoh"
|
||||
|
||||
[[aws-sdk-rust]]
|
||||
message = "_Internal:_ Update sync script to run gradle clean. This fixes an issue where codegen was not triggered when only properties changed."
|
||||
author = "rcoh"
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
references = ["smithy-rs#1100"]
|
||||
|
|
|
@ -228,6 +228,7 @@ fn build_sdk(smithy_rs_path: &Path) -> Result<PathBuf> {
|
|||
|
||||
// The output of running these commands isn't logged anywhere unless they fail
|
||||
let _ = run(&["rm", "-rf", "aws/sdk/build"], smithy_rs_path).context(here!())?;
|
||||
let _ = run(&[gradlew, ":aws:sdk:clean"], smithy_rs_path).context(here!())?;
|
||||
let _ = run(
|
||||
&[gradlew, "-Paws.fullsdk=true", ":aws:sdk:assemble"],
|
||||
smithy_rs_path,
|
||||
|
|
Loading…
Reference in New Issue