Merge pull request #900 from nosqlbench/docs_workflow

This is a workflow test for docs integration
This commit is contained in:
Jonathan Shook
2023-01-10 18:32:00 -06:00
committed by GitHub
2 changed files with 48 additions and 11 deletions

View File

@@ -51,8 +51,6 @@ jobs:
name: exported-docs
path: exported_docs.zip
docs:
needs: build
runs-on: ubuntu-20.04
@@ -63,14 +61,11 @@ jobs:
- name: set git email
run: git config --global user.name "${{ secrets.NBDROID_NAME }}"
- name: download exported-docs
- name: download exported_docs
uses: actions/download-artifact@v3
with:
name: exported-docs
- name: unzip docs
run: unzip exported_docs.zip
- run: ls -la
- name: clone nosqlbench-build-docs
@@ -85,18 +80,26 @@ jobs:
git remote set-url origin https://${{secrets.NBDROID_NAME}}:${{secrets.NBDROID_TOKEN}}@github.com/nosqlbench/nosqlbench-build-docs.git
git remote -v
- name: import zipfile
run: |
mv exported_docs.zip nosqlbench-build-docs/
- name: set CNAME
run: |
echo "previewdocs.nosqlbench.io" > nosqlbench-build-docs/site/static/CNAME
- name: commit changes
run: |
cd nosqlbench-build-docs
git add -A
- name: push changes
env:
NBDROID_NAME: ${{ secrets.NBDROID_NAME }}
NBDROID_TOKEN: ${{ secrets.NBDROID_TOKEN }}
run: |
set -x
find . -ls
rsync -av --delete -I --exclude '_index.md' drivers/ nosqlbench-build-docs/site/content/docs/drivers
rsync -av --delete -I --exclude '_index.md' bindings/ nosqlbench-build-docs/site/content/docs/bindings
echo "previewdocs.nosqlbench.io" > nosqlbench-build-docs/site/static/CNAME
cd nosqlbench-build-docs
git add -A
CHANGES=$(git status --porcelain 2>/dev/null| wc -l)
echo "found $CHANGES to push for doc updates"
if (( $CHANGES > 0 ))

View File

@@ -9,6 +9,12 @@
* Deprecated old drivers (conflicts, etc)
- version conflicts (removing cql drivers 1.9.* 3.*)
# Performance
* dryrun capability
* slightly improved rate limiter performance
* improved concurrency tracking for activities
* and a bug fix for threads=1 and uncaught errors
## New Topic
* Advanced linearization features
* variable capture in results
@@ -238,3 +244,31 @@ review:
- 394580d66c107127cc68f88cdc64a59e9c481d43
- 0330c18a7ba0904b3b3420b94416b04ee73dd7fb
- 11dd8f62daf3d1603b75cdd85fbb872dbfaac111
* For developers
* New APIs
* DriverAdapter
* SpaceCache
* ParsedOp
* OpMapper
* OpDispenser
* Removal of Phases loop
* Some support for console colors
* Logging subsystem improvements
* Discovery Options
* Project Improvements
* Testing and Documentation Methods
* Literate test examples as documentation
* Integrated test logs are artifacts
* Auto-generated reference docs are not auto-imported
* Major releases are gated by static analysis audits
* We're adding code coverage
* We've added more developers to the project
* Testing Improvements - stability and low-core build systems (gh actions)
* config
* options can be mutually exclusive, like the thread-local rate and the per-activity rate