mirror of https://github.com/VLSIDA/OpenRAM.git
Separate checkouts for runners
This commit is contained in:
parent
8435908afa
commit
7d7f849b30
|
|
@ -1,42 +1,35 @@
|
|||
name: ci
|
||||
on: [push]
|
||||
jobs:
|
||||
setup:
|
||||
scn4me_subm:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v1
|
||||
- name: Hello
|
||||
run: echo "Hello, world!"
|
||||
scn4me_subm:
|
||||
# Run this first since it is faster
|
||||
needs: setup
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: SCMOS test
|
||||
run: |
|
||||
. /home/github-runner/setup-paths.sh
|
||||
export OPENRAM_HOME="`pwd`/compiler"
|
||||
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||
export OPENRAM_TMP="`pwd`/scn4me_subm"
|
||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 32 -t scn4m_subm
|
||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 32 -k -t scn4m_subm
|
||||
- name: Archive
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: scn4me_subm Archives
|
||||
path: $OPENRAM_TMP/
|
||||
freepdk45:
|
||||
# Run this second and only if the first passes
|
||||
needs: setup
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v1
|
||||
- name: FreePDK45 test
|
||||
run: |
|
||||
. /home/github-runner/setup-paths.sh
|
||||
export OPENRAM_HOME="`pwd`/compiler"
|
||||
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||
export OPENRAM_TMP="`pwd`/freepdk45"
|
||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 32 -t freepdk45
|
||||
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 32 -k -t freepdk45
|
||||
- name: Archive
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in New Issue