Skip to content

Commit

Permalink
Explicitly specify X64 runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
valderman committed Sep 13, 2024
1 parent ccc08bd commit c26d7cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c26d7cf

Please sign in to comment.