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-07-10 06:40:58 +00:00
|
|
|
flox-snapshot:
|
|
|
|
name: "flox"
|
2022-11-24 19:21:40 +00:00
|
|
|
needs: aqua
|
2023-07-10 06:40:58 +00:00
|
|
|
uses: fluencelabs/flox/.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-07-10 06:40:58 +00:00
|
|
|
flox:
|
2023-06-19 09:23:26 +00:00
|
|
|
needs: aqua
|
|
|
|
uses: fluencelabs/fluence-cli/.github/workflows/tests.yml@main
|
|
|
|
with:
|
2023-06-22 11:59:56 +00:00
|
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
2023-06-19 09:23:26 +00:00
|
|
|
|
2023-06-22 11:59:56 +00:00
|
|
|
registry:
|
2023-01-24 13:54:42 +00:00
|
|
|
needs:
|
2023-07-10 06:40:58 +00:00
|
|
|
- flox-snapshot
|
2023-06-22 11:59:56 +00:00
|
|
|
uses: fluencelabs/registry/.github/workflows/tests.yml@main
|
2023-04-05 12:28:51 +00:00
|
|
|
with:
|
2023-07-10 06:40:58 +00:00
|
|
|
flox-version: "${{ needs.flox-snapshot.outputs.version }}"
|