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
|
name: ci
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
setup:
|
scn4me_subm:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
uses: actions/checkout@v1
|
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
|
- name: SCMOS test
|
||||||
run: |
|
run: |
|
||||||
. /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="`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
|
- name: Archive
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: scn4me_subm Archives
|
name: scn4me_subm Archives
|
||||||
path: $OPENRAM_TMP/
|
path: $OPENRAM_TMP/
|
||||||
freepdk45:
|
freepdk45:
|
||||||
# Run this second and only if the first passes
|
|
||||||
needs: setup
|
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@v1
|
||||||
- name: FreePDK45 test
|
- name: FreePDK45 test
|
||||||
run: |
|
run: |
|
||||||
. /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="`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
|
- name: Archive
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue