Skip to content

Commit

Permalink
[CI] Switch runner to self-hosted (#53)
Browse files Browse the repository at this point in the history
Right now, the free GitHub runner is failing in `deploy` step due to
lack of space in the runner:
-
https://github.com/Igalia/webkit-container-sdk/actions/runs/11069214537
We would like to switch the runner to self-hosted so we can have more
storage space in the container.
  • Loading branch information
dpino authored Sep 27, 2024
1 parent d2cdd52 commit e7ab6a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wkdev-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
shell: bash
jobs:
build:
runs-on: ubuntu-24.04
runs-on: self-hosted
steps:
- name: Set tag name
run: |
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
wkdev-enter --exec -- ./WebKit/Tools/Scripts/build-webkit --gtk --release --generate-project-only
deploy:
runs-on: ubuntu-24.04
runs-on: self-hosted
needs: build
if: github.ref_name == 'main' || startsWith(github.ref_name, 'tag/')
steps:
Expand Down

0 comments on commit e7ab6a0

Please sign in to comment.