Skip to content

Commit

Permalink
Updated trickops.yml to use a newer Ubuntu (#1769)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
hchen99 committed Sep 5, 2024
1 parent 55f055e commit cca503a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/trickops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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
Expand Down

0 comments on commit cca503a

Please sign in to comment.