Updated trickops.yml to use a newer Ubuntu (#1769)

* Updated to use ubuntu22 instead of ubuntu20 due to the koviz update that removed deprecated calls from an older Qt on ubuntu20.

* Changed perl-modules-5.30 to perl-modules-5.34 as ubuntu20 uses perl 5.30 and ubuntu22 uses perl 5.34.
This commit is contained in:
Hong Chen 2024-09-05 14:51:19 -05:00 committed by GitHub
parent 55f055eb70
commit cca503a6ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,15 +8,15 @@ defaults:
jobs:
trickops-tests-ubuntu:
name: Unit Tests Ubuntu:20.04
runs-on: ubuntu-20.04
container: ubuntu:20.04
name: Unit Tests Ubuntu:22.04
runs-on: ubuntu-22.04
container: ubuntu:22.04
steps:
- uses: actions/checkout@master
- name: install dependencies
# Note that perl is for trick-gte which TrickOps runs and qt and everything after it is for koviz
run: |
export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y git python3 python3-venv perl perl-modules-5.30 qtbase5-dev wget unzip g++ make flex bison
export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y git python3 python3-venv perl perl-modules-5.34 qtbase5-dev wget unzip g++ make flex bison
- name: create virtual environment
run: |
cd share/trick/trickops/
@ -41,7 +41,7 @@ jobs:
trickops-tests-rockylinux8:
name: Unit Tests RockyLinux8
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container: rockylinux:8
steps:
- uses: actions/checkout@master