Skip to content

Commit

Permalink
Revert "- switched to macos for documentation building, retaining `…
Browse files Browse the repository at this point in the history
…ubuntu` for deployment to GitHub pages"

This reverts commit 42b499b.
  • Loading branch information
amkrajewski committed Dec 26, 2024
1 parent 42b499b commit d2af6d4
Showing 1 changed file with 21 additions and 32 deletions.
53 changes: 21 additions & 32 deletions .github/workflows/generateDocumentation.yaml
Original file line number Diff line number Diff line change
@@ -13,52 +13,41 @@ permissions:

jobs:
generateDocumentation:
runs-on: macos-15
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nim with Homebrew
run: brew install nim
- name: Install nimplex and dependencies
run: nimble install
- name: Install BLAS and PCRE
run: sudo apt-get install -y libopenblas-dev libpcre3-dev
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: '2.0.2'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble refresh
- run: nimble install
- run: nimble install arraymancer@0.7.30
- run: nimble install nimcuda@0.1.9
- name: Build documentation
run: |
cd docs
nim c -r -d:ssl -d:changelogType=nim -d:user=amkrajewski -d:repo=nimplex getChangelog
cd ..
sed -i '' 's/assets/nimplex\/assets/g' docs/docs.nim
sed -i '' 's/assets/nimplex\/assets/g' nimplex.nim
sed -i 's/assets/nimplex\/assets/g' docs/docs.nim
sed -i 's/assets/nimplex\/assets/g' nimplex.nim
nim doc --outdir:docs --index:on --git.url:https://github.com/amkrajewski/nimplex --git.commit:main --docInternal --project nimplex.nim
sed -i '' '26i\
<img src="../nimplex/assets/logo.png" alt="Logo" style="width:200px;height:170px;margin:20px 0px 20px 20px;"/>' docs/nimplex.html
sed -i '' '12d' docs/nimplex.html
sed -i '' '12d' docs/nimplex.html
sed -i '' '12i\
<link rel="icon" href="favicon.ico" type="image/x-icon"><link rel="shortcut icon" href="favicon.ico" type="image/x-icon">' docs/nimplex.html
sed -i '26i<img src="../nimplex/assets/logo.png" alt="Logo" style="width:200px;height:170px;margin:20px 0px 20px 20px;"/>' docs/nimplex.html
sed -i '12d' docs/nimplex.html
sed -i '12d' docs/nimplex.html
sed -i '12i<link rel="icon" href="favicon.ico" type="image/x-icon"><link rel="shortcut icon" href="favicon.ico" type="image/x-icon">' docs/nimplex.html
cp docs/nimplex.html docs/index.html
- name: Copy assets to docs
run: cp -r assets docs/assets
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: docs/

deploy:
needs: generateDocumentation
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: documentation
path: docs/
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload pages artifact
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'

0 comments on commit d2af6d4

Please sign in to comment.