From 9665271331d542be46314aab40b556ebe1d0c4d7 Mon Sep 17 00:00:00 2001 From: Anatolios Laskaris Date: Mon, 20 Mar 2023 19:22:33 +0200 Subject: [PATCH] chore: Use marine from e2e (#214) * Use marine from e2e * Fix --- .github/workflows/tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce63316..269fa21 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -104,7 +104,20 @@ jobs: - name: Setup Rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Download marine artifact + id: marine + uses: actions/download-artifact@v3 + continue-on-error: true + with: + name: marine + path: ~/.local/bin + + - name: Make marine executable + if: steps.marine.outcome == 'success' + run: chmod +x ~/.local/bin/marine + - name: Setup marine + if: steps.marine.outcome == 'failure' uses: fluencelabs/setup-marine@v1 - name: Set dependencies