Browse Source

speed up clearing ci

Jonathan Kelley 1 year ago
parent
commit
9fb4a5a5bd
1 changed files with 13 additions and 0 deletions
  1. 13 0
      .github/workflows/main.yml

+ 13 - 0
.github/workflows/main.yml

@@ -71,6 +71,11 @@ jobs:
       - uses: jetli/wasm-pack-action@v0.4.0
       - name: Free Disk Space (Ubuntu)
         uses: jlumbroso/free-disk-space@v1.3.1
+        with: # speed things up a bit
+          large-packages: false
+          docker-images: false
+          swap-storage: false
+
       - run: cargo make tests
 
   fmt:
@@ -158,6 +163,10 @@ jobs:
           node-version: 16
       - name: Free Disk Space (Ubuntu)
         uses: jlumbroso/free-disk-space@v1.3.1
+        with: # speed things up a bit
+          large-packages: false
+          docker-images: false
+          swap-storage: false
       - name: Install Rust
         uses: dtolnay/rust-toolchain@master
         with:
@@ -251,6 +260,10 @@ jobs:
       - name: Free Disk Space (Ubuntu)
         if: ${{ matrix.platform.os == 'ubuntu-latest' }}
         uses: jlumbroso/free-disk-space@v1.3.1
+        with: # speed things up a bit
+          large-packages: false
+          docker-images: false
+          swap-storage: false
 
       - uses: Swatinem/rust-cache@v2
         with: