Skip to content

Commit 3a3815c

Browse files
committed
Add CI for tapeout
1 parent 2006ab8 commit 3a3815c

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/tapeout.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request:
6+
merge_group:
7+
8+
jobs:
9+
submit:
10+
runs-on: ubuntu-22.04
11+
defaults:
12+
run:
13+
working-directory: ./riscv-demo
14+
steps:
15+
- name: Check out source code
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.10'
22+
- name: Set up PDM
23+
uses: pdm-project/setup-pdm@v4
24+
with:
25+
cache: true
26+
- name: Install dependencies
27+
run: |
28+
pdm install
29+
- run: pdm submit
30+
env:
31+
CHIPFLOW_API_KEY_ID: ${{ secrets.CHIPFLOW_API_KEY_ID }}
32+
CHIPFLOW_API_KEY_SECRET: ${{ secrets.CHIPFLOW_API_KEY_SECRET }}

0 commit comments

Comments
 (0)