Skip to content

Commit

Permalink
Move jobs to client, build job to "snap" labeled runner
Browse files Browse the repository at this point in the history
Seems if we have ["self-hosted", "snap"] it can choose also
just self-hosted (which does not look right to me). We had just
a job land at the NUC, which is definitely NOT capable to build
the snap in any sensible time.
  • Loading branch information
JanneKiiskila committed Apr 5, 2024
1 parent bace0bb commit 06b056c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
build-snap:
runs-on: [ "self-hosted", "snap" ]
runs-on: [ "snap" ]
timeout-minutes: 40
steps:
- name: Enable write on all files
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
run: rm -f ~/.gitconfig

pysh-check:
runs-on: ubuntu-22.04
runs-on: client
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install black pycodestyle pydocstyle shellcheck python3
Expand All @@ -187,7 +187,7 @@ jobs:
path: "./*.log"

yamllint-snapcraft-yaml:
runs-on: ubuntu-22.04
runs-on: client
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install yamllint
Expand Down

0 comments on commit 06b056c

Please sign in to comment.