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

[chore] Move AWS codegeneration into its own folder (#166)

This allows us to deliniate AWS runtime vs. Smithy runtime and will make a future separation easier
parent 9b40b38d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -143,10 +143,10 @@ jobs:
      with:
        java-version: ${{ env.java_version }}
    - name: Generate the SDK
      run: ./gradlew :aws-sdk:assemble
      run: ./gradlew :aws:sdk:assemble
      # docs are not included in the artifact; this step validates that they can be generated
    - name: Generate docs
      run: ./gradlew :aws-sdk:cargoDocs
      run: ./gradlew :aws:sdk:cargoDocs
    - name: Get current date
      id: date
      run: echo "name=${GITHUB_REF##*/}-$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@@ -157,5 +157,5 @@ jobs:
      with:
        name: aws-sdk-${{ env.name }}-${{ github.sha }}
        path: |
          aws-sdk/build/aws-sdk/
          !aws-sdk/build/aws-sdk/target
          aws/sdk/build/aws-sdk/
          !aws/sdk/build/aws-sdk/target
+5 −0
Original line number Diff line number Diff line
@@ -17,3 +17,8 @@ For development, pre-commit hooks may be useful. Setup:
brew install pre-commit # (or appropriate for your platform: https://pre-commit.com/)
pre-commit install
```

### Project Layout
* `aws`: AWS specific codegen & Rust code (signing, endpoints, customizations, etc.)
* `codegen`: Whitelabel Smithy code generation
* `codegen-test`: Smithy protocol test generation & integration tests for Smithy whitelabel code
Loading