Skip to content

Commit

Permalink
Revert "GitHub Actions: Switch to GitHub-hosted runners"
Browse files Browse the repository at this point in the history
This reverts commit 55e539d.

The recent switch to GitHub-hosted runners introduced issues with
actions/cache path handling, resulting in build failures due to
inconsistent home directory depths. Reverting to self-hosted runners to
restore build stability and functionality.

References:
- Issue: actions/cache#1440

Signed-off-by: Nikolay Martyanov <nikolay@zededa.com>
  • Loading branch information
OhmSpectator authored and deitch committed Sep 25, 2024
1 parent f6f03a6 commit 69b5647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
include:
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: amd64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: riscv64
steps:
- name: Starting Report
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
eve:
needs: packages # all packages for all platforms must be built first
runs-on: ubuntu-20.04
runs-on: buildjet-4vcpu-ubuntu-2004
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buildondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
include:
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: amd64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: riscv64
steps:
- name: Starting Report
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
needs: packages # all packages for all platforms must be built first
# Only run for the default branch
if: github.ref_name == github.event.repository.default_branch
runs-on: ubuntu-20.04
runs-on: buildjet-4vcpu-ubuntu-2004
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 69b5647

Please sign in to comment.