-
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since quicer, which provides the QUIC implementation, is a NIF, Gun cannot depend directly on it. In order to enable QUIC and HTTP/3, users have to set the GUN_QUICER environment variable: export GUN_QUICER=1 Gun is now tested using GitHub Actions. As a result OTP-24+ is now required. In addition, the number of OTP releases tested has been reduced; only the latest of each major version is now tested. This also updates Erlang.mk.
- Loading branch information
Showing
11 changed files
with
1,164 additions
and
24 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,36 @@ | ||
## Use workflows from ninenines/ci.erlang.mk to test Gun. | ||
|
||
name: Check Gun | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
schedule: | ||
## Every Monday at 2am. | ||
- cron: 0 2 * * 1 | ||
|
||
env: | ||
CI_ERLANG_MK: 1 | ||
|
||
jobs: | ||
cleanup-master: | ||
name: Cleanup master build | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Cleanup master build if necessary | ||
if: ${{ github.event_name == 'schedule' }} | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
gh actions-cache delete Linux-X64-Erlang-master -R $REPO --confirm || true | ||
gh actions-cache delete macOS-X64-Erlang-master -R $REPO --confirm || true | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPO: ${{ github.repository }} | ||
|
||
check: | ||
name: Gun | ||
needs: cleanup-master | ||
uses: ninenines/ci.erlang.mk/.github/workflows/ci.yaml@master |
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,4 +1,4 @@ | ||
{deps, [ | ||
{cowlib,".*",{git,"https://github.com/ninenines/cowlib","2.13.0"}} | ||
{cowlib,".*",{git,"https://github.com/ninenines/cowlib","master"}} | ||
]}. | ||
{erl_opts, [debug_info,warn_export_vars,warn_shadow_vars,warn_obsolete_guard]}. |
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
Oops, something went wrong.