Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dockerfiles/aws/cpp/Dockerfile.dependencies-boost
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV WORKERS=${WORKERS}


RUN yum install -y cmake curl libcurl libcurl-devel git gcc gcc-c++ make tar gzip which python-devel
RUN curl -LO https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.gz\
RUN curl -LO https://archives.boost.io/release/1.79.0/source/boost_1_79_0.tar.gz\
&& tar -xf boost_1_79_0.tar.gz && cd boost_1_79_0\
&& echo "using gcc : : $(which gcc10-c++) ;" >> tools/build/src/user-config.jam\
&& ./bootstrap.sh --prefix=/opt\
Expand Down
3 changes: 3 additions & 0 deletions sebs/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ def deserialize(val: str) -> Language:
return member
raise Exception(f"Unknown language type {val}")

def __str__(self) -> str:
return self.value


class NoSQLStorage(str, Enum):
AWS_DYNAMODB = "aws-dynamodb"
Expand Down