-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1005 Bytes
/
cace.yml
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
35
36
37
38
39
name: cace
# Events that trigger workflow
on:
# Runs on all pushes to branches
push:
# Runs on all PRs
pull_request:
# Manual Dispatch
workflow_dispatch:
jobs:
run-cace:
runs-on: ubuntu-22.04
name: Run CACE
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
# Run CACE on the design
- name: Setup Environment and Run CACE
uses: efabless/cace-action@main
with:
pdk_family: 'sky130'
cace_root: '.'
cace_datasheet: 'cace/sky130_pa_ip__instramp.yaml'
cace_source: 'rcx'
token: ${{ secrets.GITHUB_TOKEN }}
# Upload artifacts
- name: Upload Artifacts
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: runs
path: |
${{ github.workspace }}/runs/
# Add summary
- name: Add Markdown to Step Summary
if: success() || failure()
run: cat runs/*/summary.md >> $GITHUB_STEP_SUMMARY