From cca503a6ec72b43be5afec738493bdcd5a0d2b8d Mon Sep 17 00:00:00 2001 From: Hong Chen Date: Thu, 5 Sep 2024 14:51:19 -0500 Subject: [PATCH] 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. --- .github/workflows/trickops.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/trickops.yml b/.github/workflows/trickops.yml index cadfc5c4..d7a8dc8a 100644 --- a/.github/workflows/trickops.yml +++ b/.github/workflows/trickops.yml @@ -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