mirror of
https://github.com/olofk/serv.git
synced 2026-02-14 19:25:55 +00:00
21 lines
584 B
YAML
21 lines
584 B
YAML
name: Build GDS using OpenLANE and sky130 PDK
|
|
|
|
on: [push]
|
|
jobs:
|
|
build-openlane:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout subservient
|
|
uses: actions/checkout@v2
|
|
- name: Build with Openlane
|
|
uses: librecores/ci-fusesoc-action@migrate-dockerized
|
|
with:
|
|
core: serv
|
|
target: sky130
|
|
tool: openlane
|
|
- name: Store artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: serv.gds
|
|
path: /home/runner/work/serv/serv/build/serv_1.1.0/sky130-openlane/gds/serv_synth_wrapper.gds
|