mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
28 lines
559 B
YAML
28 lines
559 B
YAML
name: "Test riscv64 "
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
basic-test:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: asterinas/asterinas:0.15.0-20250516
|
|
options: --device=/dev/kvm --privileged
|
|
strategy:
|
|
matrix:
|
|
id: ['lint', 'compile']
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run basic tests
|
|
uses: ./.github/actions/test
|
|
with:
|
|
auto_test: 'general'
|
|
runs_on: 'ubuntu-latest'
|
|
arch: 'riscv64'
|