We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa8c7f commit 5cf9129Copy full SHA for 5cf9129
.github/workflows/test.yaml
@@ -7,6 +7,15 @@ jobs:
7
Test:
8
runs-on: ubuntu-latest
9
steps:
10
+ - name: Maximize build space
11
+ uses: easimon/maximize-build-space@master
12
+ with:
13
+ remove-dotnet: "true"
14
+ remove-android: "true"
15
+ remove-haskell: "true"
16
+ remove-codeql: "true"
17
+ remove-docker-images: "true"
18
+ root-reserve-mb: 20480
19
- uses: actions/checkout@v4
20
- uses: ./.github/actions/setup-dependencies
21
name: Install Cached Dependencies
@@ -37,6 +46,7 @@ jobs:
37
46
echo "# RTL Simulation Result:\n\n$summary" >> $GITHUB_STEP_SUMMARY
38
47
cnt=$(grep -c "failed" "$GITHUB_WORKSPACE/verilog/dv/cocotb/sim/CI/runs.log")
39
48
if [[ $cnt -ne 1 ]]; then exit 1; fi
49
+ rm -rf $GITHUB_WORKSPACE/verilog/dv/cocotb/sim/CI
40
50
- name: Debug
41
51
if: always()
42
52
run: |
0 commit comments