Skip to content

Commit 85e2f07

Browse files
committed
fix: fix doxygen on arch linux
1 parent 729ae04 commit 85e2f07

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

dist/setup_cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/default_versions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Inputs, Opts } from "./main"
2+
import { isArch } from "./utils/env/isArch"
23

34
// passing "" to a tool installed by a package manager (apt, brew, choco) will result in the default version of that package manager.
45
// the directly downloaded tools require a given version ("" doesn't work).
@@ -14,7 +15,7 @@ const DefaultVersions: Record<string, string> = {
1415
meson: "0.62.2", // https://github.com/mesonbuild/meson/releases
1516
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
1617
task: "3.12.1", // https://github.com/go-task/task/releases
17-
doxygen: "1.9.4", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen // https://formulae.brew.sh/formula/doxygen
18+
doxygen: isArch() ? "1.9.3-1" : "1.9.4", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen // https://formulae.brew.sh/formula/doxygen // https://archlinux.org/packages/extra/x86_64/doxygen/
1819
gcc: "11", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
1920
}
2021

0 commit comments

Comments
 (0)