This is an automated email from the ASF dual-hosted git repository.

protobits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 36f9d16  Docs: Use pipenv to drive CI Sphinx build
36f9d16 is described below

commit 36f9d16d072aff843aeea6047e41d15a3c4fcaec
Author: Brennan Ashton <[email protected]>
AuthorDate: Wed Sep 2 12:38:58 2020 -0700

    Docs: Use pipenv to drive CI Sphinx build
    
    Signed-off-by: Brennan Ashton <[email protected]>
---
 .github/workflows/main.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 98eea73..27f35db 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -24,6 +24,14 @@ jobs:
         fetch-depth: 1
         ref: master
         path: nuttx/master
+    - uses: actions/setup-python@v2
+      with:
+        python-version: '3.8'
+    - name: Generate requirements.txt file
+      run: |
+        cd nuttx/master/Documentation/
+        pip3 install pipenv
+        pipenv lock -r > requirements.txt
     - uses: ammaraskar/sphinx-action@master
       with:
         docs-folder: "nuttx/master/Documentation/"

Reply via email to