Skip to content

Commit

Permalink
Use self-hosted CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jan 4, 2024
1 parent 21f0e9f commit 6718965
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ on:
jobs:
test-go:
name: Lint & test Go code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- name: Dump github context
Expand Down Expand Up @@ -59,7 +61,9 @@ jobs:

test-py:
name: Lint & test Python code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- name: Dump github context
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ on:
jobs:
test-go:
name: Lint & test Go code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- name: Dump github context
Expand Down Expand Up @@ -58,7 +60,10 @@ jobs:

test-py:
name: Lint & test Python code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

env:
V3IO_API: ${{ secrets.V3IO_API }}
V3IO_ACCESS_KEY: ${{ secrets.V3IO_ACCESS_KEY }}
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ on:
jobs:
test-go:
name: Lint & test Go code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

steps:
- name: Dump github context
Expand Down Expand Up @@ -57,7 +59,10 @@ jobs:

test-py:
name: Lint & test Python code
runs-on: ubuntu-latest
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18

env:
V3IO_API: ${{ secrets.V3IO_API }}
V3IO_ACCESS_KEY: ${{ secrets.V3IO_ACCESS_KEY }}
Expand Down

0 comments on commit 6718965

Please sign in to comment.