docs: fix broken links and references #58
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: riscv64 lin auto | |
on: [push, pull_request] | |
jobs: | |
riscv64_job: | |
runs-on: ubuntu-latest | |
name: riscv64 lin auto | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: uraimo/run-on-arch-action@v2 | |
name: Run | |
id: runcmd | |
with: | |
arch: riscv64 | |
distro: ubuntu_latest | |
install: | | |
apt-get update -q -y | |
apt-get install -q -y autotools-dev cmake git g++ libtool | |
run: | | |
./autogen.sh | |
./configure | |
make | |
make check | |
make install | |
make uninstall |