diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 317c4ff..ae5e066 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,9 +29,10 @@ jobs: nif: ["2.16"] job: - { target: aarch64-apple-darwin, os: macos-13, platform: "macOS (ARM64)" } - - { target: aarch64-unknown-linux-gnu, os: ubuntu-22.04, use-cross: true, platform: "Linux (ARM64)" } - - { target: x86_64-apple-darwin, os: macos-13, platform: "macOS (x86_64)" } - - { target: x86_64-unknown-linux-gnu, os: ubuntu-22.04, platform: "Linux (x86_64)" } + - { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, use-cross: true, platform: "Linux (ARM64)" } + - { target: x86_64-apple-darwin, os: macos-13, platform: "MacOS (x86_64)" } + - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, platform: "Linux (x86_64, default)" } + - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, platform: "Linux (x86_64, legacy)", variant: "legacy_cpu" } env: EXSTATIC_BUILD: true # Ensure RustlerPrecompiled forces a build @@ -71,6 +72,7 @@ jobs: target: ${{ matrix.job.target }} nif-version: ${{ matrix.nif }} use-cross: ${{ matrix.job.use-cross }} + variant: ${{ matrix.job.variant }} project-dir: "native/exstatic" - name: Upload compiled NIF artifact diff --git a/mix.exs b/mix.exs index 0589cde..43c213a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Exstatic.MixProject do use Mix.Project - @version "0.2.0" + @version "0.2.1" @repo "Intellection/exstatic" @source_url "https://github.com/#{@repo}" diff --git a/native/exstatic/Cargo.toml b/native/exstatic/Cargo.toml index 7a99f66..4fe907d 100644 --- a/native/exstatic/Cargo.toml +++ b/native/exstatic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "exstatic" -version = "0.1.0" +version = "0.2.0" authors = [] edition = "2021"