From 1711569f0852fa487d8677b0e9984b5692dfc4e6 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Wed, 20 Sep 2023 10:47:07 +0800 Subject: [PATCH] chore: always pass era-tester CI (#3415) This PR relaxes the check for era-tester CI so that it always succeeds as a non-blocking CI. --------- Co-authored-by: Charles Cooper --- .github/workflows/era-tester.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/era-tester.yml b/.github/workflows/era-tester.yml index 187b5c03a2..3e0bb3e941 100644 --- a/.github/workflows/era-tester.yml +++ b/.github/workflows/era-tester.yml @@ -98,6 +98,7 @@ jobs: - name: Run tester (fast) # Run era tester with no LLVM optimizations + continue-on-error: true if: ${{ github.ref != 'refs/heads/master' }} run: | cd era-compiler-tester @@ -105,7 +106,12 @@ jobs: - name: Run tester (slow) # Run era tester across the LLVM optimization matrix + continue-on-error: true if: ${{ github.ref == 'refs/heads/master' }} run: | cd era-compiler-tester cargo run --release --bin compiler-tester -- --path=tests/vyper/ --mode="M*B* ${{ env.VYPER_VERSION }}" + + - name: Mark as success + run: | + exit 0