-
Notifications
You must be signed in to change notification settings - Fork 986
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfaffa1
commit 8498f77
Showing
2 changed files
with
18 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,15 @@ jobs: | |
echo "after remove unused software" | ||
sudo df -h | ||
fi | ||
- name: Download example database | ||
uses: dawidd6/[email protected] | ||
with: | ||
name: hypothesis-example-db | ||
path: .hypothesis/examples | ||
if_no_artifact_found: warn | ||
workflow_conclusion: completed | ||
|
||
- name: Run All | ||
timeout-minutes: 60 | ||
run: | | ||
|
@@ -102,7 +111,14 @@ jobs: | |
STEP_COUNT=50 | ||
fi | ||
sudo MAX_EXAMPLE=$MAX_EXAMPLE STEP_COUNT=$STEP_COUNT META1=redis META2=${{matrix.meta}} .github/scripts/command/random.sh test_run_all | ||
- name: Upload example database | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: hypothesis-example-db | ||
path: .hypothesis/examples | ||
|
||
- name: Log | ||
if: always() | ||
run: | | ||
|
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