elixir-sqlite / exqlite

An SQLite3 driver for Elixir
https://hexdocs.pm/exqlite
MIT License
217 stars 48 forks source link

Add OTP26 to CI pipeline #253

Closed warmwaffles closed 1 year ago

warmwaffles commented 1 year ago

Closes #252

warmwaffles commented 1 year ago

@cocoa-xu with OTP26 and elixir 1.15 coming out, do I just need to add them to the precompilation matrix here

https://github.com/elixir-sqlite/exqlite/blob/65ac95bc5a401cc644eabc452e90c0cd9b74b03f/.github/workflows/precompile.yml#L22-L23

Changing it to

        elixir: ["1.14", "1.15]
        otp: ["26", "25", "23"]
cocoa-xu commented 1 year ago

@cocoa-xu with OTP26 and elixir 1.15 coming out, do I just need to add them to the precompilation matrix here

https://github.com/elixir-sqlite/exqlite/blob/65ac95bc5a401cc644eabc452e90c0cd9b74b03f/.github/workflows/precompile.yml#L22-L23

Changing it to

        elixir: ["1.14", "1.15]
        otp: ["26", "25", "23"]

Yea that should do it! (Although OTP 26 seemed to be not available on homebrew when I checked it last week.)

warmwaffles commented 1 year ago

Okay. I'll open another PR for the precompilation support for OTP26 and keep an eye on homebrew for an update.