Skip to content

Commit

Permalink
Setup riscv workflow (#265)
Browse files Browse the repository at this point in the history
* Setup riscv workflow

* libssl-dev

* install curl

* Update build-riscv64.yml

* Run cargo tests

* Run two jobs for crate and maturin

* Update build-riscv64.yml

* Update build-riscv64.yml

* Update build-riscv64.yml

* Update build-riscv64.yml
  • Loading branch information
emlowe authored Oct 11, 2023
1 parent c971b79 commit dd97916
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/build-riscv64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: QEMU Build and test riscv64 crate

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

jobs:
build_crate:
name: Build riscv64 crate and run tests
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
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 \
chianetwork/ubuntu-22.04-risc-builder:latest \
bash -exc '\
cargo test --release
'
build_wheels:
name: QEMU riscv64 wheel
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
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 \
chianetwork/ubuntu-22.04-risc-builder:latest \
bash -exc '\
pyenv global 3.10
python -m venv venv && \
source ./venv/bin/activate && \
pip install --upgrade pip && \
pip install --extra-index-url https://pypi.chia.net/simple/ maturin==1.2.3 && \
maturin build -i python --release -m wheel/Cargo.toml \
'
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: packages
path: ./wheel/target/wheels/

0 comments on commit dd97916

Please sign in to comment.