Skip to content

Commit

Permalink
feat: update the pipeline to run in the self hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmeds committed May 13, 2024
1 parent bb515af commit 6fbb97c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Expand Up @@ -2,8 +2,8 @@ name: ZQ2 CI

on:
push:
branches:
- main
# branches:
# - main
pull_request:
branches:
- main
Expand All @@ -18,10 +18,10 @@ env:

jobs:
check:
runs-on: [self-hosted, gcp]
runs-on: [self-hosted, z2]
steps:
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && echo "$HOME/.cargo/bin" >> $GITHUB_PATH
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && echo "$CARGO_HOME/bin" >> $GITHUB_PATH
- name: Install nightly
run: rustup toolchain install nightly
- name: Install dependencies
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Verify working directory is clean
run: git diff --exit-code
e2e_test:
runs-on: ubuntu-latest
runs-on: [self-hosted, z2]
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 6fbb97c

Please sign in to comment.