mirror of https://github.com/VLSIDA/OpenRAM.git
Add temp workspace path
This commit is contained in:
parent
0c2ed487d9
commit
dc3c293575
|
|
@ -11,14 +11,14 @@ jobs:
|
||||||
. /home/github-runner/setup-paths.sh
|
. /home/github-runner/setup-paths.sh
|
||||||
export OPENRAM_HOME="`pwd`/compiler"
|
export OPENRAM_HOME="`pwd`/compiler"
|
||||||
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||||
export OPENRAM_TMP="`pwd`/scn4me_subm"
|
export OPENRAM_TMP="${{ github.workspace }}/scn4me_subm"
|
||||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 48 -t scn4m_subm
|
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 20 -t scn4m_subm
|
||||||
- name: Archive
|
- name: Archive
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: scn4me_subm Archives
|
name: scn4me_subm Archives
|
||||||
path: $OPENRAM_TMP/
|
path: ${{ github.workspace }}/scn4me_subm/
|
||||||
freepdk45:
|
freepdk45:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -29,14 +29,14 @@ jobs:
|
||||||
. /home/github-runner/setup-paths.sh
|
. /home/github-runner/setup-paths.sh
|
||||||
export OPENRAM_HOME="`pwd`/compiler"
|
export OPENRAM_HOME="`pwd`/compiler"
|
||||||
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||||
export OPENRAM_TMP="`pwd`/freepdk45"
|
export OPENRAM_TMP="${{ github.workspace }}/freepdk45"
|
||||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 48 -t freepdk45
|
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 20 -t freepdk45
|
||||||
- name: Archive
|
- name: Archive
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: FreePDK45 Archives
|
name: FreePDK45 Archives
|
||||||
path: $OPENRAM_TMP/
|
path: ${{ github.workspace }}/freepdk45/
|
||||||
coverage:
|
coverage:
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
needs: [scn4me_subm, freepdk45]
|
needs: [scn4me_subm, freepdk45]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue