Skip to content

Commit

Permalink
chg: [src] downgrade ubuntu version in cross compile pipeline to supp…
Browse files Browse the repository at this point in the history
…ort glibc under 2.33
  • Loading branch information
gallypette committed May 15, 2024
1 parent d1aaf32 commit 158c164
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
matrix:
nif: ["2.15"]
job:
- { target: arm-unknown-linux-gnueabihf , os: ubuntu-22.04 , use-cross: true }
- { target: aarch64-unknown-linux-gnu , os: ubuntu-22.04 , use-cross: true }
# - { target: aarch64-unknown-linux-musl , os: ubuntu-22.04 , use-cross: true }
- { target: x86_64-unknown-linux-musl , os: ubuntu-22.04 , use-cross: true }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 }
- { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true }
- { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true }
# - { target: aarch64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true }
- { target: x86_64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 }
- { target: x86_64-apple-darwin , os: macos-11 }
- { target: aarch64-apple-darwin , os: macos-11 }
- { target: x86_64-pc-windows-gnu , os: windows-2019 }
Expand Down
9 changes: 7 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,16 @@ defmodule ExPoppy.MixProject do
],
maintainers: ["gallypette"],
licenses: ["BSD-3-Clause"],
links: %{"GitHub" => @repo_url}
links: %{
"GitHub" => @repo_url,
"Poppy bloom filter library explained" =>
"https://www.misp-project.org/2024/03/25/Poppy-a-new-bloom-filter-format-and-project.html/",
"Original Poppy rust library" => "https://github.com/hashlookup/poppy/",
"Hashlookup" => "https://hashlookup.io"
}
]
end


defp docs do
[
main: "ex_poppy",
Expand Down
2 changes: 1 addition & 1 deletion native/ex_poppy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ex_poppy"
version = "0.1.4"
authors = []
authors = ["Quentin Jérôme", "Jean-Louis Huynen"]
edition = "2021"

[lib]
Expand Down

0 comments on commit 158c164

Please sign in to comment.