We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35dcfff commit 9607140Copy full SHA for 9607140
.github/workflows/integration-tests.yml
@@ -29,6 +29,12 @@ jobs:
29
fail-fast: false # we want to run all tests regardless of failure
30
31
steps:
32
+ # Huggingface trainer provider will download a model to train and save
33
+ # checkpoints, so need more space than other flows for training.
34
+ - name: Free disk space
35
+ if: ${{ matrix.test-type == 'post_training' }}
36
+ uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
37
+
38
- name: Checkout repository
39
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
40
@@ -85,6 +91,7 @@ jobs:
85
91
echo "Ollama health check failed"
86
92
exit 1
87
93
fi
94
88
95
- name: Check Storage and Memory Available Before Tests
89
96
if: ${{ always() }}
90
97
run: |
0 commit comments