mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
build: Remove EoL Ubuntu 24.10 builds, Update AppImage runner to use 25.04
This commit is contained in:
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
@@ -672,7 +672,6 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- release_num: "24.04"
|
- release_num: "24.04"
|
||||||
- release_num: "24.10"
|
|
||||||
- release_num: "25.04"
|
- release_num: "25.04"
|
||||||
|
|
||||||
name: 🐧 Ubuntu ${{ matrix.release_num }}
|
name: 🐧 Ubuntu ${{ matrix.release_num }}
|
||||||
|
|||||||
2
dist/AppImage/Dockerfile
vendored
2
dist/AppImage/Dockerfile
vendored
@@ -1,4 +1,4 @@
|
|||||||
FROM ubuntu:24.10 as build
|
FROM ubuntu:25.04 as build
|
||||||
|
|
||||||
# Used to invalidate layer cache but not mount cache
|
# Used to invalidate layer cache but not mount cache
|
||||||
# See https://github.com/moby/moby/issues/41715#issuecomment-733976493
|
# See https://github.com/moby/moby/issues/41715#issuecomment-733976493
|
||||||
|
|||||||
@@ -127,8 +127,6 @@ std::string_view getUpdateArtifactEnding() {
|
|||||||
} else if (hex::executeCommand("grep -q 'ID=ubuntu' /etc/os-release") == 0) {
|
} else if (hex::executeCommand("grep -q 'ID=ubuntu' /etc/os-release") == 0) {
|
||||||
if (hex::executeCommand("grep 'VERSION_ID=\"24.04\"' /etc/os-release") == 0)
|
if (hex::executeCommand("grep 'VERSION_ID=\"24.04\"' /etc/os-release") == 0)
|
||||||
return ARCH_DEPENDENT("Ubuntu-24.04-x86_64.deb", "");
|
return ARCH_DEPENDENT("Ubuntu-24.04-x86_64.deb", "");
|
||||||
else if (hex::executeCommand("grep -q 'VERSION_ID=\"24.10\"' /etc/os-release") == 0)
|
|
||||||
return ARCH_DEPENDENT("Ubuntu-24.10-x86_64.deb", "");
|
|
||||||
else if (hex::executeCommand("grep -q 'VERSION_ID=\"25.04\"' /etc/os-release") == 0)
|
else if (hex::executeCommand("grep -q 'VERSION_ID=\"25.04\"' /etc/os-release") == 0)
|
||||||
return ARCH_DEPENDENT("Ubuntu-25.04-x86_64.deb", "");
|
return ARCH_DEPENDENT("Ubuntu-25.04-x86_64.deb", "");
|
||||||
} else if (hex::executeCommand("grep -q 'ID=fedora' /etc/os-release") == 0) {
|
} else if (hex::executeCommand("grep -q 'ID=fedora' /etc/os-release") == 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user