Skip to content

Commit

Permalink
added aarch64-linux-gnu to precompile ci matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Cocoa <[email protected]>
  • Loading branch information
cocoa-xu committed Nov 3, 2024
1 parent 76e82b6 commit 3d924b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/precompile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y build-essential automake autoconf pkg-config bc m4 unzip zip \
gcc g++
gcc g++ \
gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
- name: Precompile
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* Updated to ADBC library 14, https://github.com/apache/arrow-adbc/releases/tag/apache-arrow-adbc-14
* Updated to DuckDB 1.1.2, https://github.com/duckdb/duckdb/releases/tag/v1.1.2
* Added precompiled binaries for `aarch64-linux-gnu`.

## v0.6.2

Expand Down
4 changes: 4 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ defmodule Adbc.MixProject do
"x86_64-linux-gnu" => {
"x86_64-linux-gnu-gcc",
"x86_64-linux-gnu-g++"
},
"aarch64-linux-gnu" => {
"aarch64-linux-gnu-gcc",
"aarch64-linux-gnu-g++"
}
},
{:unix, :darwin} => %{
Expand Down

0 comments on commit 3d924b3

Please sign in to comment.