mirror of https://github.com/VLSIDA/OpenRAM.git
Separate checkout step
This commit is contained in:
parent
f7d66b7d2c
commit
0ba1ceff6a
|
|
@ -10,12 +10,15 @@ jobs:
|
||||||
echo "github.workspace = ${{ github.workspace }}"
|
echo "github.workspace = ${{ github.workspace }}"
|
||||||
echo "GITHUB_WORKSPACE = $GITHUB_WORKSPACE"
|
echo "GITHUB_WORKSPACE = $GITHUB_WORKSPACE"
|
||||||
rm -rf "${{ github.workspace }}"
|
rm -rf "${{ github.workspace }}"
|
||||||
scn4me_subm:
|
checkout_code:
|
||||||
needs: [coverage_cleanup]
|
needs: [coverage_cleanup]
|
||||||
|
runs-on: self-hosted
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
scn4me_subm:
|
||||||
|
needs: [checkout_code]
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: SCMOS test
|
- name: SCMOS test
|
||||||
run: |
|
run: |
|
||||||
. /home/github-runner/setup-paths.sh
|
. /home/github-runner/setup-paths.sh
|
||||||
|
|
@ -30,11 +33,9 @@ jobs:
|
||||||
name: scn4me_subm Archives
|
name: scn4me_subm Archives
|
||||||
path: ${{ github.workspace }}/scn4me_subm/*/
|
path: ${{ github.workspace }}/scn4me_subm/*/
|
||||||
freepdk45:
|
freepdk45:
|
||||||
needs: [coverage_cleanup]
|
needs: [checkout_code]
|
||||||
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
|
||||||
|
|
@ -63,7 +64,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: code-coverage-report
|
name: code-coverage-report
|
||||||
path: ${{ github.workspace }}/coverage_html/
|
path: ${{ github.workspace }}/coverage_html/
|
||||||
- name: Cleanup
|
|
||||||
run: |
|
|
||||||
python3-coverage erase
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue