fix(cdn): route Ubuntu 26.04 to resolute #173
2 changed files with 10 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ const UNION_SLOTS = 'amd64/alpine324';
|
||||||
const UA_R45_MUSL = 'R (4.5.3 x86_64-pc-linux-musl x86_64 linux-musl)';
|
const UA_R45_MUSL = 'R (4.5.3 x86_64-pc-linux-musl x86_64 linux-musl)';
|
||||||
const UA_R46_MUSL = 'R (4.6.0 x86_64-pc-linux-musl x86_64 linux-musl)';
|
const UA_R46_MUSL = 'R (4.6.0 x86_64-pc-linux-musl x86_64 linux-musl)';
|
||||||
const UA_R45_ALPINE = 'R/4.5.3 R (4.5.3 x86_64-pc-linux-musl x86_64 linux-musl) Alpine Linux 3.24';
|
const UA_R45_ALPINE = 'R/4.5.3 R (4.5.3 x86_64-pc-linux-musl x86_64 linux-musl) Alpine Linux 3.24';
|
||||||
|
const UA_R45_RESOLUTE = 'R/4.5.3 (Ubuntu 26.04) (aarch64-unknown-linux-gnu aarch64 linux-gnu)';
|
||||||
const UA_R45_DARWIN = 'R (4.5.1 aarch64-apple-darwin20 aarch64 darwin20)';
|
const UA_R45_DARWIN = 'R (4.5.1 aarch64-apple-darwin20 aarch64 darwin20)';
|
||||||
const UA_CURL = 'curl/8.0.1';
|
const UA_CURL = 'curl/8.0.1';
|
||||||
|
|
||||||
|
|
@ -141,6 +142,14 @@ Deno.test('rpkgs-router', async (t) => {
|
||||||
assertEquals(res.location, `https://cran.rpkgs.com${SLOT}/4.5/PACKAGES.gz`);
|
assertEquals(res.location, `https://cran.rpkgs.com${SLOT}/4.5/PACKAGES.gz`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await t.step('resolves Ubuntu 26.04 to the resolute slot', async () => {
|
||||||
|
const res = await probe('/src/contrib/PACKAGES.gz', UA_R45_RESOLUTE);
|
||||||
|
assertEquals(
|
||||||
|
res.location,
|
||||||
|
'https://cran.rpkgs.com/arm64/resolute/latest/src/contrib/PACKAGES.gz',
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
await t.step('sends an unidentifiable distro to CRAN', async () => {
|
await t.step('sends an unidentifiable distro to CRAN', async () => {
|
||||||
const res = await probe('/src/contrib/PACKAGES.gz', UA_R45_MUSL);
|
const res = await probe('/src/contrib/PACKAGES.gz', UA_R45_MUSL);
|
||||||
assertEquals(res.location, 'https://cran.r-project.org/src/contrib/PACKAGES.gz');
|
assertEquals(res.location, 'https://cran.r-project.org/src/contrib/PACKAGES.gz');
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,7 @@ const RHEL_REGEX = /(almalinux|rocky)[^\d]*(\d+)/i;
|
||||||
|
|
||||||
const UBUNTU_REGEX = /Ubuntu ([\d.]+)/i;
|
const UBUNTU_REGEX = /Ubuntu ([\d.]+)/i;
|
||||||
const UBUNTU_CODENAMES: Record<string, string> = {
|
const UBUNTU_CODENAMES: Record<string, string> = {
|
||||||
|
'26.04': 'resolute',
|
||||||
'24.04': 'noble',
|
'24.04': 'noble',
|
||||||
'22.04': 'jammy',
|
'22.04': 'jammy',
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue