From e144dcfb13e45ed255e7061507a1fd84020e92c7 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Tue, 6 Jun 2023 11:46:19 -0400 Subject: [PATCH] Try build again --- .forgejo/workflows/buildTest.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .forgejo/workflows/buildTest.yaml diff --git a/.forgejo/workflows/buildTest.yaml b/.forgejo/workflows/buildTest.yaml new file mode 100644 index 0000000..c747cb3 --- /dev/null +++ b/.forgejo/workflows/buildTest.yaml @@ -0,0 +1,30 @@ +on: [push] + +name: Test build +jobs: + amd_check: + name: x86_64 Check + runs-on: [ self-hosted,x64 ] + steps: + - uses: actions/checkout@v2 + - uses: https://github.com/actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - uses: https://github.com/actions-rs/cargo@v1 + with: + command: check + arm_check: + name: ARM64 Check + runs-on: [ self-hosted,arm64 ] + steps: + - uses: actions/checkout@v2 + - uses: https://github.com/actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - uses: https://github.com/actions-rs/cargo@v1 + with: + command: check