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 b67acf0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/foobar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build vmtest

on:
push:
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 --path=. --root=. --target ${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
name: vmtest-${{ matrix.target }}
path: bin/vmtest

0 comments on commit b67acf0

Please sign in to comment.