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-06-22 11:59:56 +00:00
|
|
|
name: "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
|
|
|
|
2023-11-22 08:38:57 +00:00
|
|
|
fcli-snapshot:
|
|
|
|
name: "fcli"
|
2022-11-24 19:21:40 +00:00
|
|
|
needs: aqua
|
2024-04-25 10:12:32 +00:00
|
|
|
uses: fluencelabs/cli/.github/workflows/snapshot.yml@main
|
2022-09-14 02:59:49 +00:00
|
|
|
with:
|
2023-06-22 11:59:56 +00:00
|
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
2022-12-19 04:27:42 +00:00
|
|
|
|
2023-11-22 08:38:57 +00:00
|
|
|
fcli:
|
2023-06-19 09:23:26 +00:00
|
|
|
needs: aqua
|
2023-11-27 11:20:13 +00:00
|
|
|
uses: fluencelabs/cli/.github/workflows/tests.yml@main
|
2023-06-19 09:23:26 +00:00
|
|
|
with:
|
2023-06-22 11:59:56 +00:00
|
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
2023-06-19 09:23:26 +00:00
|
|
|
|
2024-02-26 13:00:25 +00:00
|
|
|
# registry:
|
|
|
|
# needs:
|
|
|
|
# - fcli-snapshot
|
|
|
|
# uses: fluencelabs/registry/.github/workflows/tests.yml@main
|