added support for extra qt install dir #62
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 and Qbs docs | |
on: | |
push: | |
paths: | |
- 'doc/**' | |
- 'examples/**' | |
- 'scripts/build-qbs-doc.sh' | |
- 'VERSION' | |
jobs: | |
build-docs: | |
name: ${{ matrix.config.name }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
name: 'Build Qbs Docs', | |
options: '', | |
script: './scripts/build-qbs-doc.sh' | |
} | |
env: | |
BUILD_OPTIONS: ${{ matrix.config.options }} | |
WITH_TESTS: 0 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Pull the Docker Image | |
run: docker-compose pull jammy | |
- name: Build Qbs Docs | |
run: docker-compose run jammy ${{ matrix.config.script }} | |
- name: Upload artifacts | |
uses: 'actions/upload-artifact@v2' | |
with: | |
name: qbs-docs-${{ github.run_id }} | |
path: documentation/install-root/usr/local/share/doc/qbs/ |