.github/workflows/validate.yaml #80968
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: main | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: # Enables on-demand/manual triggering | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3 | |
- run: | | |
git clone https://github.com/aws-cloudformation/cloudformation-cli | |
cd cloudformation-cli # modifying cfn validate: https://github.com/aws-cloudformation/cloudformation-cli/pull/604#issuecomment-756521889 | |
git apply ../.github/workflows/cfn-validate.patch | |
pip install -q -e . | |
pip install -q cloudformation-cli-java-plugin | |
curl -s -L https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip -o schemas.zip | |
unzip -q schemas.zip -d schemas # download all current schemas to new directory | |
cd schemas | |
grep -L '"handlers"' * | xargs rm # remove auto-generated schemas from frameworks before CloudFormation Registry | |
# dummy .rpdk-config project file to get to validation step | |
echo '{"typeName": "AWS::Service::Type", "language": "java", "runtime": "java8", "entrypoint": "software.amazon.service.type.HandlerWrapper::handleRequest", "testEntrypoint": "software.amazon.service.type.HandlerWrapper::testEntrypoint"}' > .rpdk-config | |
cfn validate | sort | uniq | sort -nr |