Skip to content

Commit

Permalink
Merge pull request #11 from koditoriet/x64-runners
Browse files Browse the repository at this point in the history
Explicitly specify X64 runners.
  • Loading branch information
valderman authored Nov 11, 2024
2 parents ccc08bd + c26d7cf commit 15c3245
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 15c3245

Please sign in to comment.