Skip to content

Commit 54b4048

Browse files
authored
Merge pull request #12 from Intellection/bump-down-ubuntu
Build for Ubuntu 20.04 instead of 22.04
2 parents 8b86199 + 32ec7db commit 54b4048

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ jobs:
2929
nif: ["2.16"]
3030
job:
3131
- { target: aarch64-apple-darwin, os: macos-13, platform: "macOS (ARM64)" }
32-
- { target: aarch64-unknown-linux-gnu, os: ubuntu-22.04, use-cross: true, platform: "Linux (ARM64)" }
33-
- { target: x86_64-apple-darwin, os: macos-13, platform: "macOS (x86_64)" }
34-
- { target: x86_64-unknown-linux-gnu, os: ubuntu-22.04, platform: "Linux (x86_64)" }
32+
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, use-cross: true, platform: "Linux (ARM64)" }
33+
- { target: x86_64-apple-darwin, os: macos-13, platform: "MacOS (x86_64)" }
34+
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, platform: "Linux (x86_64, default)" }
35+
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, platform: "Linux (x86_64, legacy)", variant: "legacy_cpu" }
3536

3637
env:
3738
EXSTATIC_BUILD: true # Ensure RustlerPrecompiled forces a build
@@ -71,6 +72,7 @@ jobs:
7172
target: ${{ matrix.job.target }}
7273
nif-version: ${{ matrix.nif }}
7374
use-cross: ${{ matrix.job.use-cross }}
75+
variant: ${{ matrix.job.variant }}
7476
project-dir: "native/exstatic"
7577

7678
- name: Upload compiled NIF artifact

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Exstatic.MixProject do
22
use Mix.Project
33

4-
@version "0.2.0"
4+
@version "0.2.1"
55
@repo "Intellection/exstatic"
66
@source_url "https://github.com/#{@repo}"
77

native/exstatic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "exstatic"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = []
55
edition = "2021"
66

0 commit comments

Comments
 (0)