Skip to content

Build vmtest

Build vmtest #1

Workflow file for this run

name: Build vmtest
on:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target: [
x86_64-unknown-linux-musl,
]
steps:
- uses: actions/checkout@v4
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- run: |
cargo install --root=. --target ${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
name: vmtest-${{ matrix.target }}
path: bin/vmtest