Build docker from config instead of pulling it

This commit is contained in:
mrg 2022-03-03 09:01:12 -08:00
parent febf7031b1
commit ff471740ed
1 changed files with 4 additions and 2 deletions

View File

@ -6,8 +6,10 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: Docker pull - name: Docker build
run: docker pull vlsida/openram-ubuntu:latest run: |
cd ${{ github.workspace }}/docker
make build
- name: PDK Install - name: PDK Install
run: | run: |
export OPENRAM_HOME="${{ github.workspace }}/compiler" export OPENRAM_HOME="${{ github.workspace }}/compiler"