From 711803fc8feeb9e48872f89f967623dcd27a88c5 Mon Sep 17 00:00:00 2001 From: odrling Date: Wed, 15 May 2024 12:25:43 +0200 Subject: [PATCH 1/3] ci: use ubuntu 24.04 image the ubuntu-24.04 image is in beta (so it is not ubuntu-latest yet) https://github.blog/changelog/2024-05-14-github-hosted-runners-public-beta-of-ubuntu-24-04-is-now-available/ --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29894ce..5723a6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 # FIXME release this lock when possible + - ubuntu-24.04 # FIXME release this lock when possible # MacOS disabled for now - windows-latest @@ -63,7 +63,7 @@ jobs: - name: Install native dependencies (Ubuntu) run: sudo apt-get update && sudo apt-get install -y vlc mpv - if: matrix.os == 'ubuntu-20.04' + if: matrix.os == 'ubuntu-24.04' - name: Install native dependencies (MacOS) run: brew install vlc mpv From c2e9548e4fafb805bff7263a536d5c78ca8acc75 Mon Sep 17 00:00:00 2001 From: Neraste Date: Sun, 26 Jan 2025 19:02:32 +0100 Subject: [PATCH 2/3] Use `ubuntu-latest` --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5723a6d..5b22c02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: strategy: matrix: os: - - ubuntu-24.04 # FIXME release this lock when possible + - ubuntu-latest # MacOS disabled for now - windows-latest @@ -63,7 +63,7 @@ jobs: - name: Install native dependencies (Ubuntu) run: sudo apt-get update && sudo apt-get install -y vlc mpv - if: matrix.os == 'ubuntu-24.04' + if: matrix.os == 'ubuntu-latest - name: Install native dependencies (MacOS) run: brew install vlc mpv From 6fc309e94e37ac564c833554cbd49a3c46d70bd8 Mon Sep 17 00:00:00 2001 From: Neraste Date: Sun, 26 Jan 2025 19:04:32 +0100 Subject: [PATCH 3/3] Fix typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b22c02..63361df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: - name: Install native dependencies (Ubuntu) run: sudo apt-get update && sudo apt-get install -y vlc mpv - if: matrix.os == 'ubuntu-latest + if: matrix.os == 'ubuntu-latest' - name: Install native dependencies (MacOS) run: brew install vlc mpv