├── .env ├── .flake8 ├── .gitignore ├── .vscode └── settings.json ├── DEVELOPMENT.md ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── bin └── requirements.py ├── images ├── app-architecture.png ├── app-architecture.pptx └── screenshot.png ├── src ├── build.py ├── config.py ├── getbuildlogs.py ├── github_proxy.py ├── lambdainit.py ├── lambdalogging.py ├── processbuildevents.py └── s3link.py ├── template.yml └── test └── unit ├── conftest.py ├── test_build.py ├── test_constants.py ├── test_getbuildlogs.py ├── test_github_proxy.py ├── test_processbuildevents.py └── test_s3link.py /.env: -------------------------------------------------------------------------------- 1 | LAMBDA_TASK_ROOT=false 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | ignore = E126 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/README.md -------------------------------------------------------------------------------- /bin/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/bin/requirements.py -------------------------------------------------------------------------------- /images/app-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/images/app-architecture.png -------------------------------------------------------------------------------- /images/app-architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/images/app-architecture.pptx -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/build.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/config.py -------------------------------------------------------------------------------- /src/getbuildlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/getbuildlogs.py -------------------------------------------------------------------------------- /src/github_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/github_proxy.py -------------------------------------------------------------------------------- /src/lambdainit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/lambdainit.py -------------------------------------------------------------------------------- /src/lambdalogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/lambdalogging.py -------------------------------------------------------------------------------- /src/processbuildevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/processbuildevents.py -------------------------------------------------------------------------------- /src/s3link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/src/s3link.py -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/template.yml -------------------------------------------------------------------------------- /test/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/conftest.py -------------------------------------------------------------------------------- /test/unit/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_build.py -------------------------------------------------------------------------------- /test/unit/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_constants.py -------------------------------------------------------------------------------- /test/unit/test_getbuildlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_getbuildlogs.py -------------------------------------------------------------------------------- /test/unit/test_github_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_github_proxy.py -------------------------------------------------------------------------------- /test/unit/test_processbuildevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_processbuildevents.py -------------------------------------------------------------------------------- /test/unit/test_s3link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlhood/github-codebuild-logs/HEAD/test/unit/test_s3link.py --------------------------------------------------------------------------------