Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #66 from ned14/pkg.s3
Browse files Browse the repository at this point in the history
Pkg.s3
  • Loading branch information
rbsheth authored Aug 13, 2020
2 parents 385bcb0 + 59d7bd0 commit c749ed7
Show file tree
Hide file tree
Showing 799 changed files with 6,701 additions and 1,585 deletions.
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ cmake_install.cmake
install_manifest.txt

# CMake temp build directories
_builds
*/_builds
*/*/_builds
*/*/*/_builds
*/*/*/*/_builds
_build*
*/_build*
*/*/_build*
*/*/*/_build*
*/*/*/*/_build*

_testing

Expand All @@ -33,3 +33,6 @@ _Base
.vs
.vscode
CMakeSettings.json

# Default vscode python virtual env folder
env
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "gate"]
path = gate
url = https://github.com/hunter-packages/gate
url = https://github.com/cpp-pm/gate
[submodule "docs/rtfd-css"]
path = docs/rtfd-css
url = https://github.com/ruslo/rtfd-css
url = https://github.com/cpp-pm/rtfd-css
29 changes: 16 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,20 @@ matrix:
TOOLCHAIN=osx-10-13-make-cxx14
PROJECT_DIR=examples/s3
- os: osx
osx_image: xcode9.4
env: >
TOOLCHAIN=osx-10-13-cxx14
PROJECT_DIR=examples/s3
- os: osx
osx_image: xcode9.4
env: >
TOOLCHAIN=ios-nocodesign-11-4-dep-9-3
PROJECT_DIR=examples/s3
# Disabled due to some weird breakage in curl dependency build
# - os: osx
# osx_image: xcode9.4
# env: >
# TOOLCHAIN=osx-10-13-cxx14
# PROJECT_DIR=examples/s3

# Disabled due to exceeding build timeout
# - os: osx
# osx_image: xcode9.4
# env: >
# TOOLCHAIN=ios-nocodesign-11-4-dep-9-3
# PROJECT_DIR=examples/s3
# VERBOSE=0

# }

Expand All @@ -118,8 +121,8 @@ install:
- if [[ "`uname`" == "Linux" ]]; then travis_retry pip3 install --user gitpython; fi

# Install latest Polly toolchains and scripts
- wget --quiet https://github.com/ruslo/polly/archive/master.zip
- unzip -q master.zip
- wget https://github.com/cpp-pm/polly/archive/master.zip
- unzip master.zip
- POLLY_ROOT="`pwd`/polly-master"
- export PATH="${POLLY_ROOT}/bin:${PATH}"

Expand Down
53 changes: 25 additions & 28 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,34 @@ environment:

matrix:

# https://ci.appveyor.com/project/ingenue/hunter/builds/27096029
# Disabled due to not supported by OpenSSL, a dependency
# - TOOLCHAIN: "ninja-vs-15-2017-win64-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# - TOOLCHAIN: "ninja-vs-15-2017-win64-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# Disabled due to not supported by OpenSSL, a dependency
# - TOOLCHAIN: "nmake-vs-15-2017-win64-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# - TOOLCHAIN: "nmake-vs-15-2017-win64-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# - TOOLCHAIN: "vs-15-2017-win64-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# - TOOLCHAIN: "vs-14-2015-sdk-8-1"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

# - TOOLCHAIN: "mingw-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

# - TOOLCHAIN: "msys-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

# Extra {
- TOOLCHAIN: "dummy"
- TOOLCHAIN: "vs-15-2017-win64-cxx17"
PROJECT_DIR: examples\s3
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# }
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# Disabled due to compiler overload resolution bug
# - TOOLCHAIN: "vs-14-2015-sdk-8-1"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

# Disabled due to not supported by OpenSSL, a dependency
# - TOOLCHAIN: "mingw-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

# Disabled due to not supported by OpenSSL, a dependency
# - TOOLCHAIN: "msys-cxx17"
# PROJECT_DIR: examples\s3
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

install:
# Python 3
Expand Down
Loading

0 comments on commit c749ed7

Please sign in to comment.