-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 1.02 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install Jekyll
run: |
sudo apt-get install ruby-full build-essential zlib1g-dev cmake doxygen ninja-build
sudo apt-get install verilator
sudo gem install jekyll bundler jekyll-theme-tactile redcarpet pygments.rb jekyll-paginate
- name: Install Python
run: |
sudo apt-get install python3
python3 -m pip install ivpm
- name: Install Dependencies
run: |
python3 -m ivpm update --anonymous-git
- name: Install and build
run: |
make
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: web # The folder the action should deploy.