-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from martin-g/support-linux-aarch64
Update sse2neon.h to latest for better support for Linux ARM64
- Loading branch information
Showing
5 changed files
with
7,632 additions
and
4,677 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Build on Linux x86_64 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y cmake file | ||
- name: Build | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j | ||
file libhmsbeagle/libhmsbeagle.so.* | grep x86-64 | ||
build-aarch64: | ||
name: Build on Linux aarch64 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
uses: uraimo/run-on-arch-action@v2 | ||
with: | ||
arch: aarch64 | ||
distro: ubuntu20.04 | ||
githubToken: ${{ github.token }} | ||
dockerRunArgs: | | ||
--volume "${PWD}:/beagle-lib" | ||
install: | | ||
apt-get update -q -y | ||
apt-get install -q -y cmake gcc g++ openjdk-11-jdk file | ||
run: | | ||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-arm64 | ||
cd /beagle-lib | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j | ||
file libhmsbeagle/libhmsbeagle.so.* | grep aarch64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.