Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,28 @@ jobs:
name: Build and Test Rust Project
runs-on: ubuntu-latest
steps:
# Add disk space cleanup before linting
- name: Check disk space before build
run: df -h

#https://github.com/actions/runner-images/issues/2840
- name: Clean up disk space
run: |
echo "Cleaning up disk space..."
sudo rm -rf \
/opt/google/chrome \
/opt/microsoft/msedge \
/opt/microsoft/powershell \
/usr/lib/mono \
/usr/local/lib/android \
/usr/local/lib/node_modules \
/usr/local/share/chromium \
/usr/local/share/powershell \
/usr/share/dotnet \
/usr/share/swift

df -h

- name: Checkout Code
uses: actions/checkout@v4

Expand Down Expand Up @@ -70,28 +92,6 @@ jobs:
restore-keys: |
${{ runner.os }}-cargo-build-

# Add disk space cleanup before linting
- name: Check disk space before build
run: df -h

#https://github.com/actions/runner-images/issues/2840
- name: Clean up disk space
run: |
echo "Cleaning up disk space..."
sudo rm -rf \
/opt/google/chrome \
/opt/microsoft/msedge \
/opt/microsoft/powershell \
/usr/lib/mono \
/usr/local/lib/android \
/usr/local/lib/node_modules \
/usr/local/share/chromium \
/usr/local/share/powershell \
/usr/share/dotnet \
/usr/share/swift

df -h

- name: Build and Test
run: |
gnome-keyring-daemon --components=secrets --daemonize --unlock <<< 'foobar'
Expand Down
8 changes: 4 additions & 4 deletions crates/goose-cli/src/commands/configure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,22 +433,22 @@ pub fn configure_extensions_dialog() -> Result<(), Box<dyn Error>> {
"Code editing and shell access",
)
.item(
"Computer Controller",
"computercontroller",
"Computer Controller",
"controls for webscraping, file caching, and automations",
)
.item(
"Google Drive",
"googledrive",
"Google Drive",
"Search and read content from google drive - additional config required",
)
.item(
"Memory",
"memory",
"Memory",
"Tools to save and retrieve durable memories",
)
.item(
"Tutorial",
"tutorial",
"Tutorial",
"Access interactive tutorials and guides",
)
Expand Down
Loading