Skip to content

Commit

Permalink
Run all CI jobs on self-hosted, except the release job
Browse files Browse the repository at this point in the history
  • Loading branch information
muXxer committed Aug 11, 2023
1 parent 1269559 commit 1c624c7
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_HORNET.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build:
name: Build HORNET
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Set up Go
uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
build:
name: Build Docker
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
golangci-lint:
name: GolangCI-Lint
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: common
env:
TEST_NAME: common
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
name: value
env:
TEST_NAME: value
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
name: migration
env:
TEST_NAME: migration
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
name: snapshot
env:
TEST_NAME: snapshot
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
name: autopeering
env:
TEST_NAME: autopeering
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
snyk-test:
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_HORNET.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
test:
name: Test HORNET
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Set up Go
uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
Release:
name: Test release
runs-on: ubuntu-latest
runs-on: self-hosted
container:
image: iotaledger/goreleaser-cgo-cross-compiler:1.20.2
volumes: [/repo]
Expand Down

0 comments on commit 1c624c7

Please sign in to comment.