Skip to content

Commit

Permalink
Run CI on self hosted runner (#1094)
Browse files Browse the repository at this point in the history
* Run CI on self hosted runner

* remove max parallel
  • Loading branch information
jkaflik authored Sep 12, 2023
1 parent 3de6322 commit 351c034
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/run-tests-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ on:

jobs:
test-ch-head:
runs-on: ubuntu-latest
runs-on: [self-hosted, style-checker]
strategy:
fail-fast: true
max-parallel: 1
fail-fast: truek
matrix:
go:
- "1.20"
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ on:

jobs:
single-node:
runs-on: ubuntu-latest
runs-on: [self-hosted, style-checker]
strategy:
fail-fast: true
max-parallel: 1
matrix:
go:
- "1.20"
Expand All @@ -43,12 +42,11 @@ jobs:
integration-tests-cloud:
if: ${{ false }} # disabled for now
runs-on: ubuntu-latest
runs-on: [self-hosted, style-checker]
defaults:
run:
shell: bash
strategy:
max-parallel: 1
fail-fast: true
matrix:
go:
Expand Down

0 comments on commit 351c034

Please sign in to comment.