Skip to content

Commit 2c7005b

Browse files
mortbopetMorten Borup Petersen
andauthored
Bump minimum ubuntu version to 22.04 (#405)
Github has deprecated 20.04 for github-hosted runners. 22.04 is now the new minimum supported version. Co-authored-by: Morten Borup Petersen <mpetersen@microsoft.com>
1 parent 5feac94 commit 2c7005b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/linux-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: Ubuntu 20.04 / Qt 6.5.0
1+
name: Ubuntu 22.04 / Qt 6.5.0
22
on:
33
workflow_run:
44
workflows: ["Release setup"]
55
types: [completed]
66

77
jobs:
8-
buildUbuntuXenial:
9-
runs-on: ubuntu-20.04
8+
buildUbuntu:
9+
runs-on: ubuntu-22.04
1010

1111
strategy:
1212
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-latest, macos-latest, windows-latest, ubuntu-20.04]
15+
os: [ubuntu-latest, macos-latest, windows-latest, ubuntu-22.04]
1616

1717
steps:
1818
- uses: actions/checkout@v2

.github/workflows/wasm-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
- '**'
66

77
jobs:
8-
buildUbuntuXenial:
9-
runs-on: ubuntu-20.04
8+
buildUbuntu:
9+
runs-on: ubuntu-22.04
1010
env:
1111
CC: emcc
1212
CXX: em++

docker/ripes.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:22.04
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

docs/new_processor_models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The benefits are clear - by inserting a processor model into the Ripes environme
6767

6868
Preliminary work has been done to integrate the [PicoRV32](https://github.com/cliffordwolf/picorv32) core into Ripes. The work is available on [this](https://github.com/mortbopet/Ripes/tree/picorv32/src/processors/PicoRV32) branch. While a simple core, it demonstrates the process of using a Verilator-generated processor model in Ripes. Hopefully, this work can be a foundation/guide to include more complex multi-stage processors.
6969

70-
The following steps were taken to integrate the model into Ripes. This has **only** been tested on Linux (Ubunbtu 20.04).
70+
The following steps were taken to integrate the model into Ripes. This has **only** been tested on Linux (Ubunbtu 22.04).
7171

7272
- First, make sure that you have Verilator installed.
7373
- The environment variable `VERILATOR_ROOT` must be set to base directory of verilator ([see this](https://veripool.org/guide/latest/install.html#installation)).

0 commit comments

Comments
 (0)