-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ovn-org/main
merge
- Loading branch information
Showing
90 changed files
with
6,047 additions
and
2,466 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
function free_up_disk_space_ubuntu() | ||
{ | ||
local pkgs='azure-cli aspnetcore-* dotnet-* ghc-* firefox* | ||
google-chrome-stable google-cloud-cli libmono-* llvm-* | ||
microsoft-edge-stable mono-* msbuild mysql-server-core-* | ||
php-* php7* powershell* temurin-* zulu-*' | ||
|
||
# Use apt patterns to only select real packages that match the names | ||
# in the list above. | ||
local pkgs=$(echo $pkgs | sed 's/[^ ]* */~n&/g') | ||
|
||
sudo apt update && sudo apt-get --auto-remove -y purge $pkgs | ||
|
||
local paths='/usr/local/lib/android/ /usr/share/dotnet/ /opt/ghc/ | ||
/usr/local/share/boost/' | ||
sudo rm -rf $paths | ||
} |
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
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,26 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file. | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details. | ||
|
||
# Required. | ||
version: 2 | ||
|
||
# Set the OS, Python version, etc. | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
# Build documentation in the "Documentation/" directory with Sphinx. | ||
sphinx: | ||
configuration: Documentation/conf.py | ||
# Default HTML builder. | ||
builder: "html" | ||
|
||
# Build all formats: HTML, PDF, ePub. | ||
formats: all | ||
|
||
# Declare the Python requirements. | ||
python: | ||
install: | ||
- requirements: Documentation/requirements.txt |
Oops, something went wrong.