Per changes requested

- build-extra-tests composite-action comment changed to Builds extra test required for FireSim tests
- removed unneeded inputs tools-version and group-key from run-tests composite action
- Added better comment to toolchain-build composite action
- Change CI_MAKE_NPROC back to 8 in defaults.sh
- Moved all the duplicated enviroment setting stuff in workflow file to the top
  - BUILDSERVER, BUILDUSER, CI_DIR, SERVER, and JVM_OPTS
- Romoved all the not needed passed parameters in the calls to run-script
- A bit of cleanup to .github/README.md
  - added link to SO `if` hack
  - cleaned up comments on CI_DIR
  - removed bad empty final bullet line
This commit is contained in:
chick
2021-10-04 13:18:02 -07:00
parent 1a631e22ff
commit f3f4b19fde
7 changed files with 10 additions and 201 deletions

12
.github/README.md vendored
View File

@@ -42,7 +42,7 @@ will generate the data to be cached. The caching of the generated data is implic
>Note: GA cache documentation suggests using the yml level `if: steps.cache-primes.outputs.cache-hit != 'true'` to
> determine whether to run the data generation command.
> At the time of this writing the if construct has a bug and will not run correctly within a composite action. The use
> of a bash based if is a hack found on stackoverflow
> of a bash based if is a [hack found on stackoverflow](https://stackoverflow.com/questions/65473359/github-action-unable-to-add-if-condition-in-steps)
```yaml
- uses: actions/cache@v2
id: rtl-build-id
@@ -106,13 +106,8 @@ To get the CI to work correctly you need to create the following GH Repository S
| BUILDDIR | the directory to use on the build server |
| SERVERKEY | a private key to access the build server |
The default.sh script defines the following,
```bash
CI_DIR = /path/to/where/you/want/to/store/remote/files
````
but in the future this should likely be a GH Secret too.
The scripts also construct (repeatedly) a SERVER env using the above secrets
The main workflow also constructs and places in the environment a SERVER and a work directyory on that server env using the above secrets.
The SERVER is constructed like this:
```bash
SERVER = ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
```
@@ -134,4 +129,3 @@ This code is heavily based on the origin [CircleCI]() work. There a quite a few
- CCI allows a much larger cache. The entire CY directory with toolchains and RTL could be cached, with GA there is a 5Gb total cache limit
- GA support more parallel jobs 20 vs 4
- GA seems to allow much longer run times
-

View File

@@ -1,5 +1,5 @@
name: build-extra-tests
description: 'Builds extra test required for some flows'
description: 'Builds extra test required for FireSim tests'
inputs:
tools-version:

View File

@@ -2,13 +2,6 @@ name: run-tests
description: 'Runs tests according to input parameters'
inputs:
tools-version:
description: Which toolchain to build
required: false
default: 'riscv-tools'
group-key:
description: group key
required: true
project-key:
description: project key
required: true

View File

@@ -1,5 +1,5 @@
name: toolchain-build
description: 'Builds the selected toolchain'
description: 'Builds or retrieves cache of the selected toolchain'
inputs:
tools-version:

View File

@@ -18,7 +18,7 @@ clean () {
}
# make parallelism
CI_MAKE_NPROC=4
CI_MAKE_NPROC=8
# chosen based on a 24c system shared with 1 other project
REMOTE_MAKE_NPROC=4

View File

@@ -59,7 +59,6 @@ else
fi
# choose what make dir to use
case $2 in
"sim")
REMOTE_MAKE_DIR=$REMOTE_SIM_DIR

View File

@@ -4,7 +4,11 @@ on: [push]
env:
tools-cache-version: v7
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
CI_DIR: ${{ secrets.BUILDDIR }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
jobs:
commit-on-master-check:
@@ -13,8 +17,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -27,8 +29,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -41,8 +41,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -62,8 +60,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
@@ -96,8 +92,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -116,8 +110,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -136,8 +128,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -167,11 +157,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -205,11 +190,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -239,11 +219,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -273,11 +248,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -307,11 +277,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -341,11 +306,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -375,11 +335,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -412,11 +367,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -441,7 +391,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-cores"
project-key: "chipyard-rocket"
chipyard-hetero-run-tests:
@@ -451,11 +400,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -480,7 +424,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-cores"
project-key: "chipyard-hetero"
chipyard-boom-run-tests:
@@ -490,11 +433,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -519,7 +457,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-cores"
project-key: "chipyard-boom"
chipyard-cva6-run-tests:
@@ -529,11 +466,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -558,7 +490,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-cores"
project-key: "chipyard-cva6"
chipyard-sodor-run-tests:
@@ -568,11 +499,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -597,7 +523,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-cores"
project-key: "chipyard-sodor"
chipyard-dmirocket-run-tests:
@@ -607,11 +532,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -636,7 +556,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-peripherals"
project-key: "chipyard-dmirocket"
chipyard-spiflashwrite-run-tests:
@@ -646,11 +565,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -675,7 +589,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-peripherals"
project-key: "chipyard-spiflashwrite"
chipyard-spiflashread-run-tests:
@@ -685,11 +598,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -714,7 +622,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-peripherals"
project-key: "chipyard-spiflashread"
chipyard-lbwif-run-tests:
@@ -724,11 +631,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -753,7 +655,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-peripherals"
project-key: "chipyard-lbwif"
chipyard-sha3-run-tests:
@@ -763,11 +664,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -792,7 +688,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-sha3"
chipyard-streaming-fir-run-tests:
@@ -802,11 +697,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -831,7 +721,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-streaming-fir"
chipyard-streaming-passthrough-run-tests:
@@ -841,11 +730,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -870,7 +754,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-streaming-passthrough"
chipyard-hwacha-run-tests:
@@ -880,11 +763,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -909,7 +787,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-hwacha"
chipyard-gemmini-run-tests:
@@ -919,11 +796,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -948,7 +820,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-gemmini"
chipyard-nvdla-run-tests:
@@ -958,11 +829,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -987,7 +853,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-accels"
project-key: "chipyard-nvdla"
tracegen-boom-run-tests:
@@ -997,11 +862,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1026,7 +886,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-tracegen"
project-key: "tracegen-boom"
tracegen-run-tests:
@@ -1036,11 +895,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1065,7 +919,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-tracegen"
project-key: "tracegen"
icenet-run-tests:
@@ -1075,11 +928,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1104,7 +952,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-other"
project-key: "icenet"
testchipip-run-tests:
@@ -1114,11 +961,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1143,7 +985,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "group-other"
project-key: "testchipip"
firesim-run-tests:
@@ -1153,11 +994,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1182,7 +1018,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "extra-tests"
project-key: "firesim"
run-script: "run-firesim-scala-tests.sh"
@@ -1193,11 +1028,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1222,7 +1052,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "extra-tests"
project-key: "fireboom"
run-script: "run-firesim-scala-tests.sh"
@@ -1233,11 +1062,6 @@ jobs:
container:
image: ucbbar/chipyard-ci-image:554b436
options: --entrypoint /bin/bash
env:
BUILDSERVER: ${{ secrets.BUILDSERVER }}
BUILDUSER: ${{ secrets.BUILDUSER }}
SERVER: ${{ secrets.BUILDUSER }}@${{ secrets.BUILDSERVER }}
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -1262,7 +1086,6 @@ jobs:
- name: Run tests
uses: ./.github/actions/run-tests
with:
group-key: "extra-tests"
project-key: "firesim-multiclock"
run-script: "run-firesim-scala-tests.sh"