File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+
1
2
name : Cross-compile and Upload Bitchat-TUI Release Assets
2
3
3
4
on :
@@ -65,20 +66,20 @@ jobs:
65
66
run : |
66
67
cat > Cross.toml <<'EOF'
67
68
[target.x86_64-unknown-linux-musl]
68
- pre-build = ["apt-get update && apt-get install -y --no-install-recommends libdbus-1-dev"]
69
+ pre-build = ["apt-get update && apt-get install -y --no-install-recommends libdbus-1-dev pkg-config "]
69
70
70
71
[target.aarch64-unknown-linux-musl]
71
72
pre-build = [
72
73
"dpkg --add-architecture arm64",
73
74
"apt-get update",
74
- "apt-get install -y --no-install-recommends libdbus-1-dev:arm64",
75
+ "apt-get install -y --no-install-recommends libdbus-1-dev:arm64 pkg-config ",
75
76
]
76
77
77
78
[target.armv7-unknown-linux-musleabihf]
78
79
pre-build = [
79
80
"dpkg --add-architecture armhf",
80
81
"apt-get update",
81
- "apt-get install -y --no-install-recommends libdbus-1-dev:armhf",
82
+ "apt-get install -y --no-install-recommends libdbus-1-dev:armhf pkg-config ",
82
83
]
83
84
EOF
84
85
You can’t perform that action at this time.
0 commit comments