Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated trickops.yml to use a newer Ubuntu #1769

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading