CI 4
Some checks failed
Main LMDBAL workflow / Test LMDBAL with qt5 (push) Successful in 1m12s
Main LMDBAL workflow / Test LMDBAL with qt6 (push) Successful in 1m35s
Main LMDBAL workflow / Builds documentation (push) Successful in 1m1s
Main LMDBAL workflow / Deploys documentation (push) Failing after 27s
Some checks failed
Main LMDBAL workflow / Test LMDBAL with qt5 (push) Successful in 1m12s
Main LMDBAL workflow / Test LMDBAL with qt6 (push) Successful in 1m35s
Main LMDBAL workflow / Builds documentation (push) Successful in 1m1s
Main LMDBAL workflow / Deploys documentation (push) Failing after 27s
This commit is contained in:
parent
ad1a13c323
commit
da9f935b14
1 changed files with 22 additions and 4 deletions
|
@ -20,10 +20,10 @@ jobs:
|
|||
with:
|
||||
flags: -D QT_VERSION_MAJOR=6 -D LMDBAL_NAME=LMDBAL-QT6
|
||||
|
||||
docs:
|
||||
name: Release documentation
|
||||
runs-on: baremetall_peppersurprise
|
||||
# needs: [test-qt5, test-qt6]
|
||||
build-documentation:
|
||||
name: Builds documentation
|
||||
runs-on: archlinux
|
||||
needs: [test-qt5, test-qt6]
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -39,6 +39,24 @@ jobs:
|
|||
working-directory: ./build
|
||||
run: cmake --build .
|
||||
|
||||
- name: Upload docs
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: lmdbal-doc
|
||||
path: build/doc
|
||||
retention-days: 1
|
||||
|
||||
deploy-doc:
|
||||
name: Deploys documentation
|
||||
runs-on: archlinux
|
||||
needs: [build-documentation]
|
||||
steps:
|
||||
- name: Download docs
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: lmdbal-doc
|
||||
path: build/doc
|
||||
|
||||
- name: Deploy docs
|
||||
run: |
|
||||
rm -rf /srv/lmdbal/doc/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue