Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 23 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,44 @@ permissions:
contents: write
jobs:
linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container: ubuntu:20.04
env:
ImageOS: ubuntu20
LANG: en_US.UTF-8
LANGUAGE: en_US:en
LC_ALL: en_US.UTF-8
DEBIAN_FRONTEND: noninteractive
MIX_ENV: prod
ELIXIR_VERSION: "1.15.3"
ELIXIR_VERSION: "1.15.8"
strategy:
matrix:
otp_version: ["25.3"]
name: Linux x86_64 (${{ matrix.otp_version }})
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
elixir-version: ${{ env.ELIXIR_VERSION }}
- name: Install system dependencies
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential automake autoconf pkg-config bc m4 unzip zip \
apt-get update
apt-get install -y curl \
git \
liblzma-dev \
libncurses5-dev \
libssl-dev \
libtinfo-dev \
zlib1g-dev \
build-essential automake autoconf cmake pkg-config bc m4 unzip zip \
gcc g++ \
gcc-i686-linux-gnu g++-i686-linux-gnu \
gcc-aarch64-linux-gnu g++-aarch64-linux-gnu \
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
gcc-riscv64-linux-gnu g++-riscv64-linux-gnu \
gcc-powerpc64le-linux-gnu g++-powerpc64le-linux-gnu \
gcc-s390x-linux-gnu g++-s390x-linux-gnu
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
elixir-version: ${{ env.ELIXIR_VERSION }}
- name: Precompile
run: |
export ELIXIR_MAKE_CACHE_DIR=$(pwd)/cache
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end
defmodule Pythonx.MixProject do
use Mix.Project

@version "0.4.6-dev"
@version "0.4.6"
@description "Python interpreter embedded in Elixir"
@github_url "https://github.com/livebook-dev/pythonx"

Expand Down