From 3e925d17c812a47daf61b762e1d2ec20946f40f6 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Tue, 6 Jun 2023 11:26:59 -0400 Subject: [PATCH] take 2 at CI build --- .forgejo/workflows/demo.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index d470cda..5bf2c1c 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -4,3 +4,29 @@ jobs: runs-on: docker steps: - run: echo All Good + 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