Skip to content

Commit

Permalink
CODEOWNERS: Increase bandwidth on util, docs and target (#81)
Browse files Browse the repository at this point in the history
* ci: Clean temporary folder after `pip install`

* `CODEOWNERS`: Increase bandwidth on `util`, `docs` and `target`
  • Loading branch information
colluca authored Jan 15, 2024
1 parent 3c73ab9 commit 1bf902c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Unless a later match takes precedence, global owners below will be
# requested for review when someone opens a pull request.

* @paulsc96 @colluca
* @paulsc96 @colluca @fischeti

hw/snitch_cluster @paulsc96 @lucabertaccini
hw/snitch_dma @paulsc96 @thommythomaso
Expand Down
7 changes: 6 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ variables:
before_script:
- $PYTHON -m venv .venv
- source .venv/bin/activate
- pip install -r python-requirements.txt
# Unpack packages in a local temporary directory which can be safely cleaned
# after installation. Also protects against "No space left on device" errors
# occurring when the /tmp folder is filled by other processes.
- mkdir tmp
- TMPDIR=tmp pip install -r python-requirements.txt
- rm -rf tmp
- $BENDER vendor init

##############
Expand Down

0 comments on commit 1bf902c

Please sign in to comment.