Skip to content

Commit

Permalink
use sqlite3 emacs-module
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Oct 31, 2024
1 parent 33959df commit 07a735c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- uses: actions/checkout@v3
with:
path: '.emacs.d'
# - name: Install sqlite^dev
# run: nix profile install nixpkgs#sqlite^dev
# if: ${{ matrix.emacs_version < 29 }}
- name: Install sqlite^dev
if: ${{ matrix.emacs_version < 29 }}
run: nix profile install nixpkgs#sqlite^dev
- name: First start # So most modules are pulled in from melpa and gnu
run: '.emacs.d/.ci/first-start.sh .emacs.d'
# - name: Compilation # This pulls extra modules not enabled by default
Expand Down
6 changes: 3 additions & 3 deletions modules/init-forge.el
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
;; `emacsql' (a dependency of `forge') requires sqlite3 support. How the
;; support is provided changes with emacs-29 (i.e., built-in). See
;; https://github.com/magit/emacsql/commit/6401226 for more details.
;; (unless (and (fboundp 'sqlite-available-p)
;; (sqlite-available-p))
;; (use-package sqlite3))
(unless (and (fboundp 'sqlite-available-p)
(sqlite-available-p))
(use-package sqlite3))

;;; Magit Forge
(use-package forge
Expand Down

0 comments on commit 07a735c

Please sign in to comment.