Skip to content

Commit f1b5ab6

Browse files
committed
Add step to free disk space
1 parent fe80096 commit f1b5ab6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/phpunit.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,22 @@ jobs:
9595
options: --health-cmd="/opt/oracle/product/18c/dbhomeXE/bin/sqlplus -s sys/Oracle18@oracledbxe/XE as sysdba <<< 'SELECT 1 FROM DUAL'" --health-interval=10s --health-timeout=5s --health-retries=3
9696

9797
steps:
98+
- name: Free Disk Space (Ubuntu)
99+
uses: jlumbroso/free-disk-space@main
100+
with:
101+
# this might remove tools that are actually needed,
102+
# if set to "true" but frees about 6 GB
103+
tool-cache: false
104+
105+
# all of these default to true, but feel free to set to
106+
# "false" if necessary for your workflow
107+
android: true
108+
dotnet: true
109+
haskell: true
110+
large-packages: false
111+
docker-images: true
112+
swap-storage: true
113+
98114
- name: Create database for MSSQL Server
99115
if: matrix.db-platforms == 'SQLSRV'
100116
run: sqlcmd -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"

0 commit comments

Comments
 (0)