Support updated web-builder with venv #845
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
# Run check and build of the lib using the Bitcraze builder docker image | |
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
# Weekly build to make sure dependencies are OK | |
- cron: '30 16 * * 6' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Build | |
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build | |
- name: Build docs | |
run: docker run --rm -v ${PWD}:/module bitcraze/web-builder ./tools/build-docs/build-docs |