From 7575703b37deffd6e826c0460fdc571dfed0072d Mon Sep 17 00:00:00 2001 From: LGouellec Date: Mon, 12 Aug 2024 20:34:29 +0200 Subject: [PATCH 1/3] Update gh-pages.yml --- .github/workflows/gh-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index f7047aaf..80d66d8a 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -24,7 +24,7 @@ jobs: run: | pip3 install setuptools pip3 install recommonmark - pip3 install sphinx sphinx-rtd-theme + pip3 install sphinx sphinx-rtd-theme==2.0.0 pip3 install sphinx_markdown_tables - name: "Build Sphinx Doc" @@ -36,4 +36,4 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages - FOLDER: build/html/ \ No newline at end of file + FOLDER: build/html/ From d1a0b73b2ebc5a82c8d00babf16b51f2a7423841 Mon Sep 17 00:00:00 2001 From: LGouellec Date: Wed, 14 Aug 2024 19:24:50 +0200 Subject: [PATCH 2/3] Update conf.py --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 8969dda3..d0eb8cae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,6 +31,7 @@ extensions = [ 'recommonmark', 'sphinx_markdown_tables', + 'sphinx_rtd_theme', 'sphinx.ext.githubpages'] # Add any paths that contain templates here, relative to this directory. @@ -65,4 +66,4 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] \ No newline at end of file +html_static_path = ['_static'] From 1fc4a157683125de4d3d903734979539530878a2 Mon Sep 17 00:00:00 2001 From: LGouellec Date: Thu, 12 Dec 2024 18:15:27 +0000 Subject: [PATCH 3/3] fix integration test --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 59118c91..f4dae551 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET 8.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.0.10 + dotnet-version: 8.0.404 # BEGIN Dependencies for RocksDB - run: sudo apt install -y libc6-dev libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev liblz4-dev libzstd-dev - run: sudo apt install -y bzip2 lz4 librocksdb-dev