-
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
8498f77
commit 34bcacf
Showing
6 changed files
with
91 additions
and
22 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
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
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
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
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 |
---|---|---|
|
@@ -95,17 +95,27 @@ jobs: | |
sudo -E python3 .github/scripts/hypo/fs_test.py | ||
sudo -E python3 .github/scripts/hypo/acl_test.py | ||
- 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: Test | ||
timeout-minutes: 120 | ||
run: | | ||
if [ "${{ github.event_name }}" == "schedule" ]; then | ||
PROFILE='schedule' | ||
else | ||
PROFILE='pull_request' | ||
fi | ||
sudo -E PROFILE=${PROFILE} LOG_LEVEL=WARNING python3 .github/scripts/hypo/fs.py 2>&1 | tee fsrand.log | ||
sudo LOG_LEVEL=WARNING python3 .github/scripts/hypo/fs.py 2>&1 | tee fsrand.log | ||
exit ${PIPESTATUS[0]} | ||
- name: Upload example database | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: hypothesis-example-db | ||
path: .hypothesis/examples | ||
|
||
- name: check fsrand.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,11 +102,26 @@ jobs: | |
- name: Test with example | ||
run: | | ||
sudo python3 .github/scripts/hypo/s3_test.py | ||
- 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: Test randomly | ||
run: | | ||
sudo LOG_LEVEL=WARNING python3 .github/scripts/hypo/s3.py | ||
- name: Upload example database | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: hypothesis-example-db | ||
path: .hypothesis/examples | ||
|
||
- name: check log | ||
if: always() | ||
run: | | ||
|