Skip to content

Commit

Permalink
k8s local runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Nov 26, 2023
1 parent 0111562 commit 4da8ea9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/development_dynamic_enviroment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
checkout:
runs-on: self-hosted
runs-on: arc-runner-set

steps:
- uses: actions/checkout@v4

install:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["checkout"]

steps:
Expand All @@ -24,28 +24,28 @@ jobs:
- run: npm ci

fmt:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install"]

steps:
- run: npm run fmt.check

lint:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install"]

steps:
- run: npm run lint

build:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install", "fmt", "lint"]

steps:
- run: npm run build

kubeconfig:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["build"]

steps:
Expand All @@ -57,7 +57,7 @@ jobs:
echo "$KUBE_CONFIG" | base64 --decode > $GITHUB_WORKSPACE/.kube/config
deploy:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["kubeconfig"]

steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/master_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
checkout:
runs-on: self-hosted
runs-on: arc-runner-set

steps:
- uses: actions/checkout@v4

install:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["checkout"]

steps:
Expand All @@ -24,21 +24,21 @@ jobs:
- run: npm ci

fmt:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install"]

steps:
- run: npm run fmt.check

lint:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install"]

steps:
- run: npm run lint

build:
runs-on: self-hosted
runs-on: arc-runner-set
needs: ["install", "fmt", "lint"]

steps:
Expand Down

0 comments on commit 4da8ea9

Please sign in to comment.