Unverified Commit ae11859b authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

fixes regression in rustdoc ci (#469)

When ci.yaml was updated, the warning flags for `cargo doc` were not set properly which allowed documentation warnings to be present in the final build.
parent be8200c9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -246,10 +246,10 @@ jobs:
        name: aws-sdk-${{ env.name }}-${{ github.sha }}
        path: aws-sdk
    - name: Cargo Docs
      run: cargo doc --no-deps
      run: cargo doc --no-deps --document-private-items
      working-directory: aws-sdk
      env:
        RUSTFLAGS: -D warnings
        RUSTDOCFLAGS: -D warnings
  clippy-sdk:
    name: cargo clippy AWS SDK
    needs: generate-sdk