Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow to use self-hosted runners #2

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
CodeQL-Build:

# CodeQL runs on ubuntu-latest and windows-latest
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
docker:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
test-e2e:
name: Run end-to-end tests
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Setup k3s
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v1
- name: Setup Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-go:
name: Lint Go code
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
args: --timeout 5m
build:
name: Build
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Set up Go
uses: actions/setup-go@v2
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

codegen:
name: Verify Codegen
runs-on: ubuntu-latest
runs-on: self-hosted
env:
GOPATH: /home/runner/go
PROTOC_ZIP: protoc-3.12.3-linux-x86_64.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
release-images:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

release-artifacts:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down
Loading