mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
Add support to Elixir ~> 0.12.0
This commit is contained in:
parent
fa1cccdbf1
commit
e38010447a
2 changed files with 2 additions and 2 deletions
|
@ -8,6 +8,6 @@ otp_release:
|
||||||
- R16B02
|
- R16B02
|
||||||
before_install:
|
before_install:
|
||||||
- git clone https://github.com/elixir-lang/elixir
|
- git clone https://github.com/elixir-lang/elixir
|
||||||
- cd elixir && git checkout v0.11.2 && make && cd ..
|
- cd elixir && git checkout v0.12.1 && make && cd ..
|
||||||
before_script: "export PATH=`pwd`/elixir/bin:$PATH"
|
before_script: "export PATH=`pwd`/elixir/bin:$PATH"
|
||||||
script: "MIX_ENV=test mix do deps.get, test --no-start"
|
script: "MIX_ENV=test mix do deps.get, test --no-start"
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -5,7 +5,7 @@ defmodule Httparrot.Mixfile do
|
||||||
[ app: :httparrot,
|
[ app: :httparrot,
|
||||||
version: "0.0.1",
|
version: "0.0.1",
|
||||||
name: "HTTParrot",
|
name: "HTTParrot",
|
||||||
elixir: "~> 0.11.2",
|
elixir: "~> 0.11.2 or ~> 0.12.0",
|
||||||
deps: deps(Mix.env) ]
|
deps: deps(Mix.env) ]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue