From 0aca2d8ea2f1b70e4cdacf0d9f5d1e038c48275a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Thu, 5 Sep 2024 14:31:54 -0700 Subject: [PATCH] Test --- .github/workflows/foobar.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/foobar.yml diff --git a/.github/workflows/foobar.yml b/.github/workflows/foobar.yml new file mode 100644 index 0000000..434fb50 --- /dev/null +++ b/.github/workflows/foobar.yml @@ -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