downgrade versions until hex is supported in build
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
shibao 2024-06-16 12:13:34 -04:00
parent 202b70dc66
commit e358cd6e4e
4 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ steps:
- .mix
- name: test
image: elixir:1.17.0-otp-27-alpine
image: elixir:1.16.3-otp-26-alpine
environment:
TEST_DATABASE_URL: ecto://postgres:postgres@database/cannery_test
HOST: testing.example.tld

View File

@ -1,3 +1,3 @@
elixir 1.17.0-otp-27
erlang 27.0
elixir 1.16.3-otp-26
erlang 26.0
nodejs 22.3.0

View File

@ -1,4 +1,4 @@
FROM elixir:1.17.0-otp-27-alpine AS build
FROM elixir:1.16.3-otp-26-alpine AS build
# install build dependencies
RUN apk add --no-cache build-base npm git python3

View File

@ -5,7 +5,7 @@ defmodule Cannery.MixProject do
[
app: :cannery,
version: "0.9.10",
elixir: "1.17.0",
elixir: "1.16.3",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),