Skip to content

ci(mac14): add o4

ci(mac14): add o4 #2

name: riscv64 lin auto
on: [push, pull_request]
jobs:
riscv64_job:
# The host should always be Linux
runs-on: ubuntu-latest
name: Build on ubuntu-latest riscv64
steps:

Check failure on line 10 in .github/workflows/riscv64-lin-auto.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/riscv64-lin-auto.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
- uses: actions/checkout@v4.1.1
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: riscv64
distro: ubuntu_latest
# Not required, but speeds up builds by storing container images in
# a GitHub package registry.
githubToken: ${{ github.token }}
install: |
apt-get update -q -y
apt-get install -q -y git
apt-get install -q -y autoconf automake libtool
run: |
echo ::set-output name=uname::$(uname -a)
./autogen.sh
./configure
make
make check
sudo make install
sudo make uninstall
- name: Get the output
run: |
echo "The uname output was ${{ steps.runcmd.outputs.uname }}"