Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
  • Loading branch information
krish2718 committed Oct 6, 2024
1 parent 2722d3c commit e3b50e8
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions .github/workflows/docbuild.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Documentation Build

on:
pull_request_target:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
Expand All @@ -22,42 +22,49 @@ jobs:
steps:
- name: Checkout sources
uses: nrfconnect/action-checkout-west-update@main
with:
path: nrf70_bm_ws/nrf70-bm

- name: debug
working-directory: nrf70_bm_ws
run: |
ls -l
ls -l nrf70-bm
- name: cache-pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-doc-pip

- name: Install packages
working-directory: nrf70_bm_ws
run: |
sudo apt update
sudo apt-get install -y ninja-build mscgen plantuml
sudo snap install yq
DOXYGEN_VERSION=$(yq ".doxygen.version" ./ncs/nrf70-bm-driver/scripts/tools-versions-linux.yml)
DOXYGEN_VERSION=$(yq ".doxygen.version" ./nrf/scripts/tools-versions-linux.yml)
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz
echo "${PWD}/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
- name: Install Python dependencies
working-directory: ncs
working-directory: nrf70_bm_ws
run: |
sudo pip3 install -U setuptools wheel pip
pip3 install -r nrf/doc/requirements.txt
- name: West zephyr-export
working-directory: ncs
working-directory: nrf70_bm_ws
run: |
west zephyr-export
- name: Build documentation
working-directory: ncs/nrf70-bm-driver
run: |
./build_docs.sh
working-directory: nrf70_bm_ws/nrf70-bm
run: ./build-docs.sh

- name: Prepare legacy upload
if: ${{ !contains(github.event.pull_request.labels.*.name, 'external') || contains(github.event.pull_request.labels.*.name, 'CI-trusted-author') }}
working-directory: ncs/nrf70-bm-driver
working-directory: nrf70_bm_ws/nrf70-bm/nrf70_bm_lib
run: |
MONITOR="monitor_${{ github.run_id }}.txt"
Expand Down Expand Up @@ -86,6 +93,6 @@ jobs:
with:
name: docs
path: |
ncs/nrf70-bm-driver/*.zip
ncs/nrf70-bm-driver/monitor*.txt
ncs/nrf70-bm-driver/pr.txt
nrf70_bm_ws/nrf70-bm/nrf70_bm_lib/*.zip
nrf70_bm_ws/nrf70-bm/nrf70_bm_lib//monitor*.txt
nrf70_bm_ws/nrf70-bm/nrf70_bm_lib//pr.txt

0 comments on commit e3b50e8

Please sign in to comment.