From 5ddb0d9025addef0b2228dbb9b5aa511a178cf62 Mon Sep 17 00:00:00 2001 From: Ludger Paehler Date: Wed, 23 Mar 2022 21:39:01 +0100 Subject: [PATCH 1/2] Adjust workflow back to the build-system of the new webpage. --- .github/workflows/www.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/workflows/www.yml b/.github/workflows/www.yml index dfd1dd1..6bdf71e 100644 --- a/.github/workflows/www.yml +++ b/.github/workflows/www.yml @@ -11,16 +11,22 @@ jobs: steps: - uses: actions/checkout@v2 with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.74.3' - - - name: Build - run: hugo --minify && echo -n enzyme.mit.edu > ./public/CNAME + submodules: true + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install doxygen + python3 -m venv env + source env/bin/activate + pip install --upgrade pip + pip install -r requirements.txt + + - name: Build docs + run: | + source env/bin/activate + make html + echo -n enzyme.mit.edu > ./build/html/CNAME - name: Deploy uses: peaceiris/actions-gh-pages@v3 From 580dd9f21e8d765dc7d883c428844f6edcd2afbf Mon Sep 17 00:00:00 2001 From: Ludger Paehler Date: Sun, 4 Dec 2022 19:54:53 -0600 Subject: [PATCH 2/2] Adjust url references --- config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.toml b/config.toml index 2e29eca..b851f87 100644 --- a/config.toml +++ b/config.toml @@ -19,7 +19,7 @@ disablePathToLower = true # Souce Code repository section description = "Enzyme Automatic Differentiation Framework" - github_repository = "https://github.com/wsmoses/Enzyme" + github_repository = "https://github.com/EnzymeAD/Enzyme" version = "" # Documentation repository section @@ -68,12 +68,12 @@ disablePathToLower = true [[menu.main]] name = "Source" weight = 10 - url = "https://github.com/wsmoses/Enzyme" + url = "https://github.com/EnzymeAD/Enzyme" [[menu.main]] name = "Bugs" weight = 20 - url = "https://github.com/wsmoses/Enzyme/issues" + url = "https://github.com/EnzymeAD/Enzyme/issues" [[menu.main]] name = "Try Online"