Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarez89 committed Nov 1, 2023
1 parent 31ed18c commit 6f92a11
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master
- test-pages
tags:
- '*'
permissions:
Expand All @@ -23,8 +24,12 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
ref: 'master'
ref: 'test-pages'

- name: show release
run: |
apt-get install -y python3
python3 docs/source/conf.py
- name: Install dependencies and build documentation
run: |
apt-get install -y python3-pip make
Expand All @@ -33,6 +38,7 @@ jobs:
make html
touch build/html/.nojekyll
- name: Deploy pages
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import re
import os
release = re.sub('-.+-.{8}$', '', os.popen('git describe').read().strip())
print(release)
exit(0)


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ by comparing the behaviour or RADOS and RBD.

With RADOS, we can delete the individual objects, and we can do it synchronously
- meaning that when sibench completes the run, Ceph will have deleted the objects
and will have no pending workload.
and will have no pending workload.

With RBD, we delete the RBD image synchronously, but under the hood, that image
is comprised of multiple objects, and Ceph does not delete them at once, but
Expand Down

0 comments on commit 6f92a11

Please sign in to comment.