Skip to content

Commit

Permalink
Pin Ubuntu CI versions to 22.04
Browse files Browse the repository at this point in the history
This change adapts to the changes made in Theia via eclipse-theia/theia#14275.

Contributed on behalf of STMicroelectronics.
  • Loading branch information
planger committed Oct 11, 2024
1 parent 9e3a7dc commit c6387ec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:

jobs:
build:
name: E2E Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60

steps:
Expand Down Expand Up @@ -68,8 +68,8 @@ jobs:
key: ${{ github.run_number }}

browser-tests:
name: E2E Browser Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Browser Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60
needs: [build]

Expand Down Expand Up @@ -109,8 +109,8 @@ jobs:
path: allure-results/*

electron-tests:
name: E2E Electron Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Electron Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60
needs: [build]

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

generate-report:
name: Generate Report of E2E Electron Tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [browser-tests, electron-tests]

steps:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:

jobs:
prepare:
name: Performance benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 20
steps:
- name: Checkout
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
key: ${{ github.run_number }}

run-browser-tests:
name: Performance browser benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance browser benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
needs: [prepare]
strategy:
matrix:
Expand Down Expand Up @@ -118,8 +118,8 @@ jobs:
path: performance-metrics/*

run-electron-tests:
name: Performance electron benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance electron benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
needs: [prepare]
strategy:
matrix:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

generate-report:
name: Create Performance Report
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [run-browser-tests, run-electron-tests]
steps:
- name: Restore Build Result
Expand Down

0 comments on commit c6387ec

Please sign in to comment.