-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build gpgme before notmuch to speed up ci runs during dev
- Loading branch information
Showing
1 changed file
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,23 @@ jobs: | |
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
|
||
# - name: Update the gpg dependency in the pyproject file | ||
# # 1.16 is the version of gpgme that is currently available in ubuntu-latest (currently 22.04) | ||
# run: sed -i 's|gpg>1.10.0|gpg @ https://dev.gnupg.org/source/[email protected]|' pyproject.toml | ||
- name: Clone the gpgme repository | ||
run: git clone --depth 1 --branch gpgme-1.16.0 https://dev.gnupg.org/source/gpgme.git gpgme | ||
|
||
- name: Build the gpgme bindings | ||
run: | | ||
set -e | ||
find | ||
./autogen.sh | ||
./configure --enable-maintainer-mode | ||
make | ||
sudo make install | ||
find | ||
working-directory: gpgme | ||
|
||
- name: clone the notmuch repository | ||
run: git clone --depth 1 https://git.notmuchmail.org/git/notmuch notmuch | ||
|
||
|
@@ -59,23 +76,6 @@ jobs: | |
run: pip install . | ||
working-directory: notmuch/bindings/python-cffi | ||
|
||
# - name: Update the gpg dependency in the pyproject file | ||
# # 1.16 is the version of gpgme that is currently available in ubuntu-latest (currently 22.04) | ||
# run: sed -i 's|gpg>1.10.0|gpg @ https://dev.gnupg.org/source/[email protected]|' pyproject.toml | ||
- name: Clone the gpgme repository | ||
run: git clone --depth 1 --branch gpgme-1.16.0 https://dev.gnupg.org/source/gpgme.git gpgme | ||
|
||
- name: Build the gpgme bindings | ||
run: | | ||
set -e | ||
find | ||
./autogen.sh | ||
./configure --enable-maintainer-mode | ||
make | ||
sudo make install | ||
find | ||
working-directory: gpgme | ||
|
||
- name: Install dependencies | ||
run: pip install . | ||
|
||
|