[ci] Fix commit-on-master-check to find rocket-chip on graphics

... and remove prepare-chipyard-fpga.
This commit is contained in:
Hansung Kim
2023-10-04 20:31:39 -07:00
parent 24433584ae
commit debdd35b13
2 changed files with 7 additions and 24 deletions

View File

@@ -45,11 +45,17 @@ search () {
done
}
submodules=("cva6" "boom" "ibex" "gemmini" "hwacha" "icenet" "nvdla" "rocket-chip" "sha3" "sifive-blocks" "sifive-cache" "testchipip" "riscv-sodor" "mempress" "bar-fetchers" "shuttle")
submodules=("cva6" "boom" "ibex" "gemmini" "hwacha" "icenet" "nvdla" "sha3" "sifive-blocks" "sifive-cache" "testchipip" "riscv-sodor" "mempress" "bar-fetchers" "shuttle")
dir="generators"
branches=("master" "main" "dev")
search
# rocket-chip is forked to graphics branch
submodules=("rocket-chip")
dir="generators"
branches=("graphics")
search
submodules=("esp-tools-feedstock")
dir="toolchains/esp-tools"
branches=("main")

View File

@@ -330,29 +330,6 @@ jobs:
with:
group-key: "group-other"
prepare-chipyard-fpga:
name: prepare-chipyard-fpga
needs: setup-complete
runs-on: self-hosted
steps:
- name: Delete old checkout
run: |
ls -alh .
rm -rf ${{ github.workspace }}/* || true
rm -rf ${{ github.workspace }}/.* || true
ls -alh .
- name: Checkout
uses: actions/checkout@v3
- name: Git workaround
uses: ./.github/actions/git-workaround
- name: Create conda env
uses: ./.github/actions/create-conda-env
- name: Build RTL on self-hosted
uses: ./.github/actions/prepare-rtl
with:
group-key: "group-fpga"
build-type: "fpga"
##########################################################################
chipyard-spike-gemmini-run-tests: