2022-09-20 18:25:55 +03:00
|
|
|
name: "e2e"
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "!**.md"
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
snapshot:
|
|
|
|
name: "aquavm"
|
|
|
|
uses: ./.github/workflows/snapshot.yml
|
|
|
|
|
|
|
|
rust-peer:
|
|
|
|
name: "rust-peer"
|
|
|
|
needs:
|
|
|
|
- snapshot
|
|
|
|
|
|
|
|
uses: fluencelabs/rust-peer/.github/workflows/snapshot.yml@master
|
|
|
|
with:
|
|
|
|
image-name: "docker.fluence.dev/aquavm"
|
2022-09-29 17:14:40 +03:00
|
|
|
avm-server-version: |
|
|
|
|
{
|
|
|
|
"git": "https://github.com/fluencelabs/aquavm",
|
|
|
|
"branch": "${{ github.head_ref }}"
|
|
|
|
}
|
|
|
|
air-interpreter-wasm-version: |
|
|
|
|
{
|
|
|
|
"version": "=${{ needs.snapshot.outputs.air-interpreter-wasm-version }}",
|
|
|
|
"registry": "fluence"
|
|
|
|
}
|
2022-09-20 18:25:55 +03:00
|
|
|
|
|
|
|
fluence-js-tests:
|
|
|
|
name: "fluence-js"
|
|
|
|
needs:
|
|
|
|
- snapshot
|
2022-10-13 12:50:32 +03:00
|
|
|
- rust-peer
|
2022-09-20 18:25:55 +03:00
|
|
|
|
|
|
|
uses: fluencelabs/fluence-js/.github/workflows/tests.yml@master
|
|
|
|
with:
|
2022-10-10 22:15:28 +03:00
|
|
|
avm-version: "${{ needs.snapshot.outputs.avm-version }}"
|
2022-10-13 12:50:32 +03:00
|
|
|
rust-peer-image: "${{ needs.rust-peer.outputs.rust-peer-image }}"
|
2022-09-20 18:25:55 +03:00
|
|
|
|
|
|
|
fluence-js-snapshot:
|
|
|
|
name: "fluence-js"
|
|
|
|
needs:
|
|
|
|
- snapshot
|
|
|
|
|
|
|
|
uses: fluencelabs/fluence-js/.github/workflows/snapshot.yml@master
|
|
|
|
with:
|
2022-10-10 22:15:28 +03:00
|
|
|
avm-version: "${{ needs.snapshot.outputs.avm-version }}"
|
2022-09-20 18:25:55 +03:00
|
|
|
|
|
|
|
aqua-snapshot:
|
|
|
|
name: "aqua"
|
|
|
|
needs:
|
|
|
|
- fluence-js-snapshot
|
|
|
|
|
|
|
|
uses: fluencelabs/aqua/.github/workflows/snapshot.yml@main
|
|
|
|
with:
|
2022-10-10 22:15:28 +03:00
|
|
|
fluence-js-version: "${{ needs.fluence-js-snapshot.outputs.fluence-js-version }}"
|
2022-09-20 18:25:55 +03:00
|
|
|
|
|
|
|
aqua-playground:
|
|
|
|
needs:
|
|
|
|
- fluence-js-snapshot
|
|
|
|
- aqua-snapshot
|
|
|
|
- rust-peer
|
|
|
|
|
|
|
|
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
|
|
|
|
with:
|
2022-10-10 22:15:28 +03:00
|
|
|
fluence-js-version: "${{ needs.fluence-js-snapshot.outputs.fluence-js-version }}"
|
|
|
|
aqua-version: "${{ needs.aqua-snapshot.outputs.aqua-version }}"
|
|
|
|
rust-peer-image: "${{ needs.rust-peer.outputs.rust-peer-image }}"
|
2022-10-10 17:48:13 +03:00
|
|
|
|
|
|
|
registry:
|
|
|
|
needs:
|
|
|
|
- aqua-snapshot
|
|
|
|
- rust-peer
|
|
|
|
|
|
|
|
uses: fluencelabs/registry/.github/workflows/tests.yml@main
|
|
|
|
with:
|
2022-10-10 22:15:28 +03:00
|
|
|
aqua-version: "${{ needs.aqua-snapshot.outputs.aqua-version }}"
|
|
|
|
rust-peer-image: "${{ needs.rust-peer.outputs.rust-peer-image }}"
|
2022-10-10 17:48:13 +03:00
|
|
|
# uncomment and change to branch name to run against
|
2022-10-10 22:15:28 +03:00
|
|
|
# ref: show-aqua-version
|