-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fxamacker/reuse-mtrie-state-for-checkpoint…
…ing-2
- Loading branch information
Showing
433 changed files
with
5,826 additions
and
3,870 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Flaky Test Debug | ||
|
||
on: | ||
schedule: | ||
- cron: '0 */1 * * *' # every 1 hour | ||
push: | ||
branches: | ||
- '**/*flaky-test*' | ||
env: | ||
GO_VERSION: 1.18 | ||
|
||
jobs: | ||
integration-test: | ||
name: Integration Tests | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
test-category: | ||
- integration-epochs | ||
env: | ||
TEST_CATEGORY: ${{ matrix.test-category }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
- name: Build relic | ||
run: make crypto_setup_gopath | ||
- name: Docker build | ||
run: make docker-build-flow | ||
- name: Run tests | ||
if: github.actor != 'bors[bot]' | ||
run: ./tools/test_monitor/run-tests.sh | ||
- name: Run tests (Bors) | ||
if: github.actor == 'bors[bot]' | ||
uses: nick-invision/retry@v2 | ||
with: | ||
timeout_minutes: 15 | ||
max_attempts: 2 | ||
command: ./tools/test_monitor/run-tests.sh | ||
|
||
|
Validating CODEOWNERS rules …
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
Oops, something went wrong.