Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
d-e-s-o committed Sep 5, 2024
1 parent 58d1c56 commit 0aca2d8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/foobar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit 0aca2d8

Please sign in to comment.