From a519c9a737f4bda19dafe9c9f1cf17afe6c00618 Mon Sep 17 00:00:00 2001 From: python357-1 <30739625+python357-1@users.noreply.github.com> Date: Wed, 11 Dec 2024 19:04:53 -0600 Subject: [PATCH] chore: update pytest workflow to 24.04 (#639) * fix: try fixing pytest workflow * chore: update pytest workflow to 24.04 * fix: fix libglx package name * fix: try a different package * fix: try apt-update first * Revert "fix: try apt-update first" This reverts commit 34c04f985b30a600328d55b70faa39113c3d0cc9. * Reapply "fix: try apt-update first" This reverts commit 775bc2634d27801a5a4e80b46dad7c70d5136f10. --- .github/workflows/pytest.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index bb266050..6788cce4 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -5,7 +5,7 @@ on: [ push, pull_request ] jobs: pytest: name: Run tests - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout repo @@ -20,11 +20,12 @@ jobs: - name: Install system dependencies run: | # dont run update, it is slow - # sudo apt-get update + sudo apt-get update sudo apt-get install -y --no-install-recommends \ libxkbcommon-x11-0 \ x11-utils \ libyaml-dev \ + libgl1 \ libegl1 \ libxcb-icccm4 \ libxcb-image0 \