Skip to content

Commit

Permalink
Github action: fix installing sphinx
Browse files Browse the repository at this point in the history
On Windows use pip, on ubuntu use apt
and on macos use brew. It's so easy ....
  • Loading branch information
chris2511 committed Apr 24, 2024
1 parent bb32e30 commit bb911ce
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
steps:
- name: Install Sphinx
run: pip3 install sphinx
if: matrix.os == 'windows'

- name: APT install Sphinx
if: matrix.os == 'ubuntu'
run: sudo apt install sphinx

- name: Install Qt
uses: jurplel/install-qt-action@v3
Expand All @@ -68,9 +73,9 @@ jobs:
msystem: mingw64
install: mingw-w64-x86_64-openssl openssl-devel base-devel mingw-w64-x86_64-gcc

- name: Brew install OpenSSL
- name: Brew install OpenSSL & Sphinx
if: matrix.os == 'macos'
run: brew install openssl
run: brew install openssl sphinx

- name: Checkout XCA
uses: actions/checkout@v4
Expand Down

0 comments on commit bb911ce

Please sign in to comment.