Skip to content

Commit

Permalink
[#1817] Actions: update list of job runners environments for CI (#1811)
Browse files Browse the repository at this point in the history
The virtual environments for the GitHub Actions runners have been
updated, with the introduction of macos-12 and ubuntu-22.04, and the
deprecation of macos-10.15.

Let's update the list of environments used for running the CI jobs.
  • Loading branch information
dcshzj authored Jul 31, 2022
1 parent bfd0acc commit a528076
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: ${{ matrix.os }} JDK 8
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
env:
NODE_VERSION: "lts/*"
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
name: ${{ matrix.os }} JDK 8
strategy:
matrix:
os: [macos-10.15, macos-11]
os: [macos-11, macos-12]
runs-on: ${{ matrix.os }}
env:
HOMEBREW_NO_AUTO_UPDATE: 1 # Prevent time-consuming brew update
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
name: ${{ matrix.os }} JDK 8
strategy:
matrix:
os: [windows-2022, windows-2019]
os: [windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:

cypress:
name: Cypress frontend tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: Checkout repository
Expand Down

0 comments on commit a528076

Please sign in to comment.