-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* thread safe connection pool * coarse grain locking + event loop preference * use embedded loop for pooling test * rm atomic + use circular buffer for available * use gh actions for ci * add logging * el preference docs + use while loop for prune * add delgation test
- Loading branch information
1 parent
b5742bf
commit d9fd2be
Showing
5 changed files
with
334 additions
and
120 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: [tanner0101] # loganwright, joscdk | ||
open_collective: vapor |
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,25 @@ | ||
name: test | ||
on: | ||
- pull_request | ||
jobs: | ||
xenial: | ||
container: | ||
image: swift:5.1-xenial | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
bionic: | ||
container: | ||
image: swift:5.1-bionic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
thread: | ||
container: | ||
image: swift:5.1-bionic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test --sanitize=thread |
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
Oops, something went wrong.