Skip to content

Add support for RISC-V as a host #48

Add support for RISC-V as a host

Add support for RISC-V as a host #48

Workflow file for this run

name: Self-Hosted Test CI
on:
push:
branches:
- "tmp-host-riscv64"
jobs:
build:
runs-on: [self-hosted, linux, RISCV64]
steps:
# - name: Update & Upgrade
# run: sudo apt update && sudo apt upgrade --yes
- name: Test command
run: uname -a
- name: Checkout repository
uses: actions/checkout@v4
- name: Dependencies
run: sudo apt install meson llvm-18-dev lld-18 libssl-dev pkg-config clang-18 --yes
- name: Update alternatives
run: |
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 18
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 18
sudo update-alternatives --install /usr/bin/lld lld /usr/bin/lld-18 18
- name: Build
run: |

Check failure on line 26 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
meson setup build
ninja -C build test