forked from UCL/STIR
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
632 changed files
with
13,876 additions
and
10,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!-- Fill in most of this text, and delete what is not appropriate. | ||
Please read and adhere to the [contribution guidelines](https://github.com/UCL/STIR/blob/master/CONTRIBUTING.md). | ||
Did you sign the STIR Contribution License Agreement? | ||
--> | ||
|
||
## Changes in this pull request | ||
|
||
|
||
## Testing performed | ||
|
||
|
||
## Related issues | ||
<!-- Use keywords such as "fixes", "closes", see https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue --> | ||
|
||
|
||
## Checklist before requesting a review | ||
<!--Put an x between the [] when completed. Delete a line if not applicable. --> | ||
- [] I have performed a self-review of my code | ||
- [] I have added docstrings/doxygen in line with the guidance in the developer guide | ||
- [] I have implemented unit tests that cover any new or modified functionality (if applicable) | ||
- [] The code builds and runs on my machine | ||
- [] `documentation/release_XXX.md` has been updated with any functionality change (if applicable) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
df -h | ||
# locations from the internet, e.g. https://github.com/easimon/maximize-build-space | ||
# saves about 2GB | ||
if [ -d /usr/share/dotnet ]; then | ||
echo removing dotnet | ||
sudo rm -rf /usr/share/dotnet | ||
fi | ||
# saves about 10 GB | ||
if [ -d "$AGENT_TOOLSDIRECTORY" ]; then | ||
echo removing agent_tools | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
fi | ||
# saves about 10 GB | ||
if [ -d /usr/local/lib/android ]; then | ||
echo removing android files | ||
sudo rm -rf /usr/local/lib/android | ||
fi | ||
if [ -d /opt/ghc ]; then | ||
echo removing android files | ||
sudo rm -rf /opt/ghc | ||
fi | ||
df -h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: cffconvert | ||
|
||
on: | ||
push: | ||
paths: | ||
- CITATION.cff | ||
|
||
jobs: | ||
validate: | ||
name: "validate" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out a copy of the repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check whether the citation metadata from CITATION.cff is valid | ||
uses: citation-file-format/cffconvert-github-action@2.0.0 | ||
with: | ||
args: "--validate" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.