Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-08 | CI: Remove unneeded env | Loïc Hoguin | |
2024-11-08 | CI: Add concurrency rules | Loïc Hoguin | |
2024-11-08 | CI: Simplify testing for examples | Loïc Hoguin | |
Since we only test them on Ubuntu we can use setup-beam to install Erlang/OTP and avoid waiting for all other checks to complete. Also make the "delete master" job conditional rather than only its step. | |||
2024-11-07 | CI: Fix master build deletion | Loïc Hoguin | |
Some things likely changed and made it not work anymore. Also seems that the macOS runner is now ARM64. | |||
2024-11-06 | CI: Upload logs in examples job too | Loïc Hoguin | |
2024-03-26 | Initial HTTP/3 implementationhttp3 | Loïc Hoguin | |
This includes Websocket over HTTP/3. Since quicer, which provides the QUIC implementation, is a NIF, Cowboy cannot depend directly on it. In order to enable QUIC and HTTP/3, users have to set the COWBOY_QUICER environment variable: export COWBOY_QUICER=1 In order to run the test suites, the same must be done for Gun: export GUN_QUICER=1 HTTP/3 support is currently not available on Windows due to compilation issues of quicer which have yet to be looked at or resolved. HTTP/3 support is also unavailable on the upcoming OTP-27 due to compilation errors in quicer dependencies. Once resolved HTTP/3 should work on OTP-27. Because of how QUIC currently works, it's possible that streams that get reset after sending a response do not receive that response. The test suite was modified to accomodate for that. A future extension to QUIC will allow us to gracefully reset streams. This also updates Erlang.mk. | |||
2024-01-29 | Make sure we can cancel ct-examples in CI2.11.0 | Loïc Hoguin | |
2024-01-26 | Don't use specific actions versions and update cache to v4 | Loïc Hoguin | |
2024-01-26 | Run make ct-examples at the end of normal CI | Loïc Hoguin | |
2024-01-08 | Don't fail actions if master cache doesn't exist | Loïc Hoguin | |
2023-12-18 | Delete the master cache on cron | Loïc Hoguin | |
2023-12-01 | Use GitHub actions for testing Cowboy | Loïc Hoguin | |
Now tested against OTP-24+. Erlang.mk has been updated as well. |