Skip to content

Commit

Permalink
Cross-compile linux arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia authored Oct 19, 2024
1 parent 4a2b11e commit 5e5b86a
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion .github/workflows/build_natives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,39 @@ jobs:
with:
name: native-linux-amd64
path: ${{github.workspace}}/*.so
build-linux-arm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: actions/setup-java@v3
with:
distribution: adopt
java-version: "8"

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake gcc g++ gfortran

- name: Install cross-compilation tools for ARM
run: sudo apt-get install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf

- name: Configure CMake for cross-compilation
run: |
cmake \
-DCMAKE_SYSTEM_NAME=Linux \
-DCMAKE_SYSTEM_PROCESSOR=armhf \
-DCMAKE_C_COMPILER=arm-linux-gnueabihf-gcc \
-DCMAKE_CXX_COMPILER=arm-linux-gnueabihf-g++ .
- name: Build
run: cmake --build ${{github.workspace}} --config ${{env.BUILD_TYPE}}

- uses: actions/upload-artifact@v3
with:
name: native-linux-arm64
path: ${{github.workspace}}/*.so
build-windows:
runs-on: windows-latest
steps:
Expand Down Expand Up @@ -96,6 +129,10 @@ jobs:
with:
name: native-linux-amd64
path: ${{github.workspace}}/artifacts
- uses: actions/download-artifact@v3
with:
name: native-linux-arm64
path: ${{github.workspace}}/artifacts
- uses: actions/download-artifact@v3
with:
name: native-mac-amd64
Expand All @@ -117,4 +154,4 @@ jobs:
prerelease: true
title: Natives from ${{github.ref}}
files: |
${{github.workspace}}/artifacts/*
${{github.workspace}}/artifacts/*

0 comments on commit 5e5b86a

Please sign in to comment.