forked from vapor/vapor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* backpressure * update HTTP request decoder w/ backpessure * update circle * fix copied circle ci * add snippet * comment out xenial tests
- Loading branch information
1 parent
24cdfe9
commit d07a918
Showing
8 changed files
with
160 additions
and
41 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,25 +1,59 @@ | ||
version: 2 | ||
|
||
jobs: | ||
linux: | ||
macos: | ||
macos: | ||
xcode: "10.2.0" | ||
steps: | ||
- checkout | ||
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install [email protected] | ||
- run: swift build | ||
- run: swift test | ||
macos-release: | ||
macos: | ||
xcode: "10.2.0" | ||
steps: | ||
- checkout | ||
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install [email protected] | ||
- run: swift build -c release | ||
bionic: | ||
docker: | ||
- image: swift:5.0 | ||
- image: swift:5.0-bionic | ||
steps: | ||
- checkout | ||
- run: apt-get update; apt-get install -y libssl-dev zlib1g-dev | ||
- run: swift build | ||
- run: swift test | ||
linux-release: | ||
bionic-release: | ||
docker: | ||
- image: swift:5.0 | ||
- image: swift:5.0-bionic | ||
steps: | ||
- checkout | ||
- run: apt-get update; apt-get install -y libssl-dev zlib1g-dev | ||
- run: swift build -c release | ||
# xenial: | ||
# docker: | ||
# - image: swift:5.0-xenial | ||
# steps: | ||
# - checkout | ||
# - run: apt-get update; apt-get install -y libssl-dev zlib1g-dev | ||
# - run: swift build | ||
# - run: swift test | ||
# xenial-release: | ||
# docker: | ||
# - image: swift:5.0-xenial | ||
# steps: | ||
# - checkout | ||
# - run: apt-get update; apt-get install -y libssl-dev zlib1g-dev | ||
# - run: swift build -c release | ||
|
||
workflows: | ||
version: 2 | ||
tests: | ||
jobs: | ||
- linux | ||
- linux-release | ||
- macos | ||
- macos-release | ||
- bionic | ||
- bionic-release | ||
# - xenial | ||
# - xenial-release |