2022-11-24 19:21:40 +00:00
|
|
|
name: "e2e"
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-01-17 13:21:53 +00:00
|
|
|
paths-ignore:
|
2022-09-14 02:59:49 +00:00
|
|
|
- "**.md"
|
2023-04-05 12:28:51 +00:00
|
|
|
- ".github/**"
|
|
|
|
- "!.github/workflows/e2e.yml"
|
|
|
|
- "!.github/workflows/snapshot.yml"
|
|
|
|
types:
|
|
|
|
- "labeled"
|
|
|
|
- "synchronize"
|
|
|
|
- "opened"
|
|
|
|
- "reopened"
|
2022-11-24 19:21:40 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2023-01-17 13:21:53 +00:00
|
|
|
- "main"
|
2023-04-05 12:28:51 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
- ".github/**"
|
|
|
|
- "!.github/workflows/e2e.yml"
|
|
|
|
- "!.github/workflows/snapshot.yml"
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2022-11-24 19:21:40 +00:00
|
|
|
aqua:
|
2023-04-05 12:28:51 +00:00
|
|
|
if: >
|
|
|
|
github.event_name == 'push' ||
|
|
|
|
contains(github.event.pull_request.labels.*.name, 'e2e')
|
2022-09-14 02:59:49 +00:00
|
|
|
uses: ./.github/workflows/snapshot.yml
|
2022-12-02 08:15:26 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
aqua-playground:
|
2022-11-24 19:21:40 +00:00
|
|
|
needs: aqua
|
2022-11-30 12:28:06 +00:00
|
|
|
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
|
2022-09-14 02:59:49 +00:00
|
|
|
with:
|
2022-11-24 19:21:40 +00:00
|
|
|
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|
2022-11-17 09:01:08 +00:00
|
|
|
|
|
|
|
registry:
|
2022-11-24 19:21:40 +00:00
|
|
|
needs: aqua
|
2022-11-17 09:01:08 +00:00
|
|
|
uses: fluencelabs/registry/.github/workflows/tests.yml@main
|
|
|
|
with:
|
2022-11-24 19:21:40 +00:00
|
|
|
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|
2022-12-19 04:27:42 +00:00
|
|
|
|
2023-06-19 09:23:26 +00:00
|
|
|
fluence-cli:
|
|
|
|
needs: aqua
|
|
|
|
uses: fluencelabs/fluence-cli/.github/workflows/tests.yml@main
|
|
|
|
with:
|
|
|
|
aqua-api-version: "${{ needs.aqua.outputs.aqua-api-version }}"
|
|
|
|
|
2023-04-05 12:28:51 +00:00
|
|
|
aqua-native:
|
|
|
|
name: "aqua"
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
runner:
|
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
arch: amd64
|
|
|
|
os: linux
|
|
|
|
static: true
|
2023-01-24 13:54:42 +00:00
|
|
|
needs:
|
2023-04-05 12:28:51 +00:00
|
|
|
- aqua
|
|
|
|
uses: ./.github/workflows/binary.yml
|
|
|
|
with:
|
|
|
|
runs-on: ${{ matrix.runner.runs-on }}
|
|
|
|
arch: ${{ matrix.runner.arch }}
|
|
|
|
os: ${{ matrix.runner.os }}
|
|
|
|
static: ${{ matrix.runner.static }}
|