mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-04-25 08:42:14 +00:00
chore(e2e): Use marine binary snapshot in e2e (#14)
This commit is contained in:
parent
cfe256bc19
commit
861b1e5f24
15
.github/workflows/snapshot.yml
vendored
15
.github/workflows/snapshot.yml
vendored
@ -48,12 +48,25 @@ jobs:
|
|||||||
- name: Setup Rust toolchain
|
- name: Setup Rust toolchain
|
||||||
uses: actions-rust-lang/setup-rust-toolchain@v1
|
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
|
- name: Setup marine
|
||||||
|
if: steps.marine.outcome == 'failure'
|
||||||
uses: fluencelabs/setup-marine@v1
|
uses: fluencelabs/setup-marine@v1
|
||||||
|
|
||||||
- name: Download sqlite-wasm
|
- name: Download sqlite-wasm
|
||||||
continue-on-error: true
|
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
name: sqlite-wasm
|
name: sqlite-wasm
|
||||||
path: artifacts/
|
path: artifacts/
|
||||||
|
20
.github/workflows/tests.yml
vendored
20
.github/workflows/tests.yml
vendored
@ -1,5 +1,4 @@
|
|||||||
name: Run tests
|
name: Run tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
@ -24,14 +23,25 @@ jobs:
|
|||||||
- name: Setup Rust toolchain
|
- name: Setup Rust toolchain
|
||||||
uses: actions-rust-lang/setup-rust-toolchain@v1
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
|
||||||
- name: Install marine
|
- name: Download marine artifact
|
||||||
uses: baptiste0928/cargo-install@v1.3.0
|
id: marine
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
crate: marine
|
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: Download sqlite-wasm
|
- name: Download sqlite-wasm
|
||||||
continue-on-error: true
|
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
name: sqlite-wasm
|
name: sqlite-wasm
|
||||||
path: artifacts/
|
path: artifacts/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user