Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,19 @@ jobs:
EOF
shell: bash

# `sqlite` and `sqlite-devel` packages are apparently needed for NodeJS
# 22.14. Otherwise this symbol lookup error is thrown:
# ```
# /usr/bin/node-22: symbol lookup error: /lib64/libnode.so.127: undefined symbol: sqlite3session_attach
# ```
# This is a workaround until the issue is resolved. We are not using SQLite in the project.
- name: Install dependencies
run: |
dnf install -y nodejs npm make cmake rpm-build copr-cli
dnf install -y \
nodejs npm \
make cmake \
rpm-build copr-cli \
sqlite sqlite-devel

- name: Package ADiCT lite
run: |
Expand Down
Loading