This file contains hidden or 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
| { | |
| "universityarchives": "5561", | |
| "reservesmicrotextandmediadesk": "5557", | |
| "medievalinstitutelibrary": "5558", | |
| "circulationservicedesk": "1483", | |
| "engineeringlibrary": "5566", | |
| "architecturelibrary": "5563", | |
| "kelloggkroclibrary": "5567", | |
| "mahaffeybusinesslibrary": "5564", | |
| "chemistryphysicslibrary": "5565", |
This file contains hidden or 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
| #! /usr/bin/env python | |
| """ local codebuild implementation | |
| Parses buildspec.yml files, and executes them locally, as per: | |
| http://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-example | |
| """ | |
| from __future__ import print_function | |
| import functools | |
| import glob | |
| import os |
OlderNewer