Cleanup Windows linker errors, Added null check in get_mx25519_impl, Fixed coverage pages copy

This commit is contained in:
Matt Hess
2025-12-21 17:30:06 +00:00
parent 53026f9a53
commit 71b12b0004
4 changed files with 13 additions and 8 deletions

View File

@@ -21,9 +21,6 @@ on:
pull_request:
schedule:
- cron: '44 11 * * 0'
jobs:
analyze:
name: Analyze

View File

@@ -65,21 +65,22 @@ jobs:
- name: Checkout GitHub Pages repository
uses: actions/checkout@v4
with:
repository: SChernykh/SChernykh.github.io
repository: mxhess/mxhess.github.io
token: ${{ secrets.PAGES_DEPLOY_TOKEN }}
path: gh-pages
- name: Copy coverage report to GitHub Pages repo
run: |
rm -rf gh-pages/p2pool-coverage
cp -r tests/build/coverage gh-pages/p2pool-coverage
mkdir -p gh-pages/docs
rm -rf gh-pages/docs/p2pool-coverage
cp -r tests/build/coverage gh-pages/docs/p2pool-coverage
- name: Commit and push coverage report
run: |
cd gh-pages
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add p2pool-coverage
git add docs/p2pool-coverage
git commit -m "Update p2pool coverage report"
git push