Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
mayel committed Oct 20, 2024
1 parent b55764d commit b9e2e7b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 deletions deps-debian-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ chmod +x ./deps-debian.sh

# dev deps
apt-get install -q -y --no-install-recommends sqlite3 npm
# rustc cargo gcc g++ make
# rustc cargo g++

# deps of tools
apt-get install -q -y --no-install-recommends autoconf dpkg-dev libncurses-dev unixodbc-dev libssl-dev libsctp-dev libodbc1 libssl1.1 libsctp1
apt-get install -q -y --no-install-recommends autoconf dpkg-dev libncurses-dev unixodbc-dev libssl-dev libsctp-dev libodbc1 libssl1.1 libsctp1 make gcc
# includes build tools needed for mise to build erlang ^

# tools
# NOTE: using mise because bullseye elixir version is too old
Expand Down
8 changes: 6 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -670,10 +670,14 @@ rel-rebuild:
# Build the Docker image (NOT including changes to local forks)
rel-build ARGS="":
@echo "Please note that the build will not include any changes in forks that haven't been committed and pushed, you may want to run just contrib-release first."
@just rel-build remote {{ ARGS }}
@just rel-build-with-opts remote {{ ARGS }}

rel-build-with-clones ARGS="":
@echo "Please note that the build will include changes in forks that haven't been committed and pushed."
@just rel-build-with-opts local {{ ARGS }}

# Build the release
rel-build-with-clones USE_EXT="local" ARGS="":
rel-build-with-opts USE_EXT ARGS="":
@just {{ if WITH_DOCKER != "no" {"rel-build-docker"} else {"rel-build-OTP"} }} {{ USE_EXT }} {{ ARGS }}

# Build the OTP release
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ defmodule Bonfire.Umbrella.MixProject do
# TODO: put these in ENV or an external writeable config file similar to deps.*
@config [
# note that the flavour will automatically be added where the dash appears
version: "0.9.10-beta.162",
version: "0.9.10-beta.163",
elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}",
flavour: @flavour,
default_flavour: @default_flavour,
Expand Down

0 comments on commit b9e2e7b

Please sign in to comment.