Remove cmake version check from setup.py #43
Workflow file for this run
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
name: Build and test riscv64 on ubuntu-latest | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
timeout-minutes: 60 | |
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 | |
# image: tonistiigi/binfmt:latest | |
- 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 '\ | |
cmake --version && \ | |
uname -a && \ | |
export CP_USE_GREEN_REAPER=0 && \ | |
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 -k "not k_21" -v tests/ | |
' | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: ./dist |