From c26d7cf31c8809bc125963ba528430a738f9c959 Mon Sep 17 00:00:00 2001 From: Anton Ekblad Date: Fri, 13 Sep 2024 18:05:46 +0200 Subject: [PATCH] Explicitly specify X64 runners. --- .github/workflows/unit-tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 125b0fa..c470ace 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -2,7 +2,8 @@ name: Run unit tests on: [push] jobs: unit-tests: - runs-on: self-hosted + name: Unit tests + runs-on: [self-hosted, x64] steps: - run: curl https://sh.rustup.rs -sSf | sh -s -- -y - name: Check out repo @@ -12,7 +13,8 @@ jobs: cargo test dbus-run-session cargo test --features=install,dbus-tests clippy: - runs-on: self-hosted + name: Clippy + runs-on: [self-hosted, x64] steps: - run: curl https://sh.rustup.rs -sSf | sh -s -- -y - name: Check out repo