summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-10-02 22:31:16 -0700
committerGitHub <noreply@github.com>2023-10-02 22:31:16 -0700
commit0abbcd6941fb27d9dd7ac3443c78c06607660d33 (patch)
treee12f2a61c10e4e67bb4b59b4826bc0665e674272 /.github
parentf539580f0e4e6207183e373dd445466d6327006d (diff)
Use github runners for unit tests (for now) (#1279)
My self hosted runner is much faster, but my house was hit by lightning and the internet is down. I'm a few thousand miles away atm so won't be able to sort it for a while. Tests broken by _nature_.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 2870f8d6c..cde34a2d8 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -42,7 +42,8 @@ jobs:
run: cargo build --all --locked --release && strip target/release/atuin
unit-test:
- runs-on: [self-hosted, ARM64, macOS]
+ #runs-on: [self-hosted, ARM64, macOS]
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3