Skip to content

Commit

Permalink
infra(runner): Run CI on GitHub's runners
Browse files Browse the repository at this point in the history
Since this repo is public, it can not use self-hosted runners.
  • Loading branch information
TjazVracko committed Jun 24, 2024
1 parent 521bc0c commit a9fe485
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codechecker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
codechecker:
runs-on: self-hosted
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/twister.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
twister-build:
name: "Run Unit Tests"
runs-on: self-hosted
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
name: "Publish Coverage Report"
# NOTE: This action is not compatible with "workflow_dispatch" event, so
# it's not possible to run it manually.
runs-on: self-hosted
runs-on: ubuntu-20.04
permissions:
issues: write
pull-requests: write
Expand Down

0 comments on commit a9fe485

Please sign in to comment.