Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and test wheel for riscv64 using QEMU #429

Merged
merged 21 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/workflows/build-test-riscv64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Build and test riscv64 on ubuntu-latest

on:
push:
branches:
- main
- dev
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
build_wheels:
name: QEMU riscv64 via Debian on ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Set up QEMU on x86_64
if: startsWith(matrix.os, 'ubuntu-latest')
id: qemu
uses: docker/setup-qemu-action@v2
with:
platforms: riscv64

- name: Build and Test
run: |
docker run --rm --platform linux/riscv64 \
-v ${{ github.workspace }}:/ws --workdir=/ws \
riscv64/debian:rc-buggy \
bash -exc '\
apt-get update && \
apt-get install -y cmake build-essential git python3-full python3-dev python3-pip && \
cmake --version && \
uname -a && \
pip wheel -w dist . && \
python3 -m venv venv && \
./venv/bin/python -m pip install dist/*.whl && \
./venv/bin/python -m pip install pytest && \
./venv/bin/python -m pytest -v python-bindings/test.py
'

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: packages
path: ./dist
6 changes: 6 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ target_include_directories(bls PUBLIC
${blst_SOURCE_DIR}
)
target_compile_definitions(bls PRIVATE __BLST_PORTABLE__ BLSALLOC_SODIUM=1)

if(CMAKE_SYSTEM_PROCESSOR STREQUAL "riscv64")
list(REMOVE_ITEM bls_sources ${blst_SOURCE_DIR}/build/assembly.S)
target_compile_definitions(bls PRIVATE __BLST_NO_ASM__)
endif()

target_link_libraries(bls PUBLIC sodium)

if(WITH_COVERAGE)
Expand Down