Skip to content

Commit

Permalink
Compile gpgme with system python
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed Aug 9, 2024
1 parent 093e75a commit d65f423
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

# https://notmuchmail.org/releases/ notmuch-0.38.3.tar.xz
- name: Install dependencies for the gpg and notmuch python package
run: |
Expand Down Expand Up @@ -58,10 +53,6 @@ jobs:
run: find
working-directory: gpgme

- name: Install gpgme python bindings
run: pip install .
working-directory: gpgme/lang/python

- name: clone the notmuch repository
run: git clone --depth 1 https://git.notmuchmail.org/git/notmuch notmuch

Expand All @@ -79,10 +70,19 @@ jobs:
sudo make install
working-directory: notmuch

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install notmuch python bindings
run: pip install .
working-directory: notmuch/bindings/python-cffi

- name: Install gpgme python bindings
run: pip install .
working-directory: gpgme/lang/python

- name: Install dependencies
run: pip install .

Expand Down

0 comments on commit d65f423

Please sign in to comment.