We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cf5c37 + f2f3f3a commit b4e56faCopy full SHA for b4e56fa
1 file changed
.github/workflows/release.yml
@@ -22,9 +22,19 @@ jobs:
22
EOF
23
shell: bash
24
25
+ # `sqlite` and `sqlite-devel` packages are apparently needed for NodeJS
26
+ # 22.14. Otherwise this symbol lookup error is thrown:
27
+ # ```
28
+ # /usr/bin/node-22: symbol lookup error: /lib64/libnode.so.127: undefined symbol: sqlite3session_attach
29
30
+ # This is a workaround until the issue is resolved. We are not using SQLite in the project.
31
- name: Install dependencies
32
run: |
- dnf install -y nodejs npm make cmake rpm-build copr-cli
33
+ dnf install -y \
34
+ nodejs npm \
35
+ make cmake \
36
+ rpm-build copr-cli \
37
+ sqlite sqlite-devel
38
39
- name: Package ADiCT lite
40
0 commit comments