Skip to content

Commit

Permalink
ci: run our nightly jobs using self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed May 27, 2022
1 parent 0e8169f commit b7166c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
jobs:
beta:
name: Run test on the beta channel
runs-on: [self-hosted, ubuntu]
runs-on: [self-hosted, self-hosted-ubuntu]
steps:
- uses: actions/checkout@v3
- name: Install beta toolchain
Expand All @@ -49,7 +49,7 @@ jobs:

release:
name: build release binaries
runs-on: [self-hosted, ubuntu]
runs-on: [self-hosted, self-hosted-ubuntu]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -60,7 +60,7 @@ jobs:
args: --all-targets --all-features --release --profile=release

cargo-udeps:
runs-on: ubuntu-latest
runs-on: [self-hosted, self-hosted-ubuntu]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit b7166c7

Please sign in to comment.