fix: 修复wait4系统调用部分语义与Linux不一致的问题 #257
Workflow file for this run
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
name: Build current version docs | |
on: | |
pull_request: | |
branches: [ "master" ] | |
# paths: | |
# - 'docs/**' | |
env: | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_REF: ${{ github.ref }} | |
jobs: | |
build-current-version: | |
if: github.repository == 'DragonOS-Community/DragonOS' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install requirements | |
working-directory: ./docs | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3-pip | |
pip3 install -r requirements.txt | |
- name: build docs | |
working-directory: ./docs | |
shell: bash -ileo pipefail {0} | |
run: | | |
make html |