From ddfab3e71bfda4fb4bea01f0070138fce1dd7f46 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:46:45 -0300 Subject: [PATCH] more targets --- .github/workflows/binaries.yml | 3 +++ lib/candlex/native.ex | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 034c4df..837ef10 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -25,8 +25,11 @@ jobs: matrix: nif_version: ["2.16"] job: + - { target: aarch64-apple-darwin , os: macos-12 } + - { target: aarch64-unknown-linux-gnu , os: ubuntu-22.04 } - { target: x86_64-apple-darwin , os: macos-12 } - { target: x86_64-pc-windows-gnu , os: windows-2022 } + - { target: x86_64-pc-windows-msvc , os: windows-2022 } - { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 } env: PROJECT_VERSION: "0.1.2-alpha1" diff --git a/lib/candlex/native.ex b/lib/candlex/native.ex index 471b6de..e849afd 100644 --- a/lib/candlex/native.ex +++ b/lib/candlex/native.ex @@ -15,8 +15,11 @@ defmodule Candlex.Native do version: version, nif_versions: ["2.16"], targets: [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", "x86_64-unknown-linux-gnu" ]