-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated git tags for aws-c-common and aws-c-io, added lib64 path supp… (
#30) * Updated git tags for aws-c-common and aws-c-io, added lib64 path support for python build, added codebuild jobs for manylinux1 builds. * Update s2n for the BSD fixes while we're at it.
- Loading branch information
1 parent
61cecbe
commit 4e32a1c
Showing
6 changed files
with
56 additions
and
13 deletions.
There are no files selected for viewing
Submodule aws-c-common
updated
10 files
+6 −1 | CMakeLists.txt | |
+24 −0 | codebuild/ancient-linux-x64.yml | |
+24 −0 | codebuild/ancient-linux-x86.yml | |
+1 −1 | format-check.sh | |
+1 −1 | include/aws/common/math.fallback.inl | |
+3 −3 | include/aws/testing/aws_test_harness.h | |
+5 −0 | source/posix/system_info.c | |
+4 −4 | source/posix/time.c | |
+5 −0 | tests/CMakeLists.txt | |
+2 −0 | tests/atomics_test.c |
Submodule aws-c-io
updated
5 files
+6 −0 | source/bsd/kqueue_event_loop.c | |
+21 −3 | source/linux/epoll_event_loop.c | |
+2 −0 | source/posix/host_resolver.c | |
+10 −0 | source/posix/pipe.c | |
+12 −0 | source/posix/socket.c |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 0.2 | ||
#this build spec assumes the manylinux1 image for pypi | ||
#additional packages we installed: cmake 3.5, libcrypto 1.1.0j, gcc 4.8.4 | ||
phases: | ||
install: | ||
commands: | ||
pre_build: | ||
commands: | ||
- export CC=gcc | ||
build: | ||
commands: | ||
- echo Build started on `date` | ||
- git submodule update --init | ||
- /opt/python/cp35-cp35m/bin/python setup.py sdist bdist_wheel | ||
- /opt/python/cp27-cp27m/bin/python setup.py sdist bdist_wheel | ||
post_build: | ||
commands: | ||
- echo Build completed on `date` | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 0.2 | ||
#this build spec assumes the manylinux1 x86 image for pypi | ||
#additional packages we installed: cmake 3.5, libcrypto 1.1.0j, gcc 4.8.4 | ||
phases: | ||
install: | ||
commands: | ||
pre_build: | ||
commands: | ||
- export CC=gcc | ||
build: | ||
commands: | ||
- echo Build started on `date` | ||
- git submodule update --init | ||
- /opt/python/cp35-cp35m/bin/python setup.py sdist bdist_wheel | ||
- /opt/python/cp27-cp27m/bin/python setup.py sdist bdist_wheel | ||
post_build: | ||
commands: | ||
- echo Build completed on `date` | ||
|
Submodule s2n
updated
from 383586 to e23fb8
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