-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit contains the following changes: * Copies submodules recursively to provide all the files for the test * Removes the F4PGA toolchain usage from the CI. Instead, it checks the flow described in the README using tuttest * Removes the btdi containers and restores the flow that installs all the requirements explicitely Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
- Loading branch information
Showing
2 changed files
with
54 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: GH Pages | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
docs-generation: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y texlive-full | ||
python3 -m pip install -r docs/requirements.txt | ||
- name: Generate documentation | ||
run: | | ||
cd docs | ||
make html latexpdf | ||
cp build/latex/*.pdf build/html/ | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: gh-page | ||
path: docs/build/html | ||
|
||
- name: Deploy to Github Pages | ||
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' | ||
run: | | ||
cd docs/build/html | ||
touch .nojekyll | ||
git init | ||
cp ../../../.git/config ./.git/config | ||
git add . | ||
git config --local user.email "push@gha" | ||
git config --local user.name "GHA" | ||
git commit -am "update ${{ github.sha }}" | ||
git push -u origin +HEAD:gh-pages | ||
rm -rf .git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters