Skip to content

Commit

Permalink
Use BuildJet runners for eden workflow (#882)
Browse files Browse the repository at this point in the history
This commit changes runners of composite `test.yml` workflow to BuildJet
runners. They are more powerful and cheaper that the ones provided by GitHub.

Note that this workflow is used by EVE repository.

Switching to BuildJet runners and using new workflow should reduce time to
run tests from 6 hours to approx. 1.5 hours.

However, there are still some tests failing which needs further investigation

Signed-off-by: Pavel Abramov <uncle.decart@gmail.com>
  • Loading branch information
uncleDecart authored Jul 31, 2023
1 parent dee1c36 commit 1ca91ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
file_system: ['ext4', 'zfs']
tpm: [true, false]
name: Smoke tests
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:
networking:
name: Networking test suite
needs: smoke
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand All @@ -59,7 +59,7 @@ jobs:
file_system: ['ext4', 'zfs']
name: Storage test suite
needs: smoke
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand All @@ -77,7 +77,7 @@ jobs:
lpc-loc:
name: LPC LOC test suite
needs: smoke
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand All @@ -99,7 +99,7 @@ jobs:
file_system: ['ext4', 'zfs']
name: EVE upgrade test suite
needs: smoke
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand All @@ -117,7 +117,7 @@ jobs:
user-apps:
name: User apps test suite
needs: smoke
runs-on: ubuntu-22.04
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Get code
uses: actions/checkout@v3
Expand Down

0 comments on commit 1ca91ec

Please sign in to comment.