mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-12 17:55:33 +00:00
aa10706506
* move integration tests to repo * Move aqua-playground CI * Fix * Use local aqua cli * Move aqua tests to e2e * Test new build.sbt * Fix? * Test * Test * Test * Test * Update * Fix * Fix * Fix * fix * Fix * Rename aqua-api to api directory for consistency * Migrate to pnpm * Add bump version script * Test snapshot workflow * fix * Fix * Fix * Setup pnpm * Update pnpm version * Fix * Do not publish tests * Update * Fix * Fix? * delete import * Fix * Fix * Fix? * Fix * Fix * Use main branch * Fix quotes * Fix * Fix release * Cleanup * Remove compiled examples * Cleanup --------- Co-authored-by: DieMyst <dmitry.shakhtarin@fluence.ai>
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: "e2e"
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/e2e.yml"
|
|
- "!.github/workflows/snapshot.yml"
|
|
types:
|
|
- "labeled"
|
|
- "synchronize"
|
|
- "opened"
|
|
- "reopened"
|
|
push:
|
|
branches:
|
|
- "main"
|
|
paths-ignore:
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/e2e.yml"
|
|
- "!.github/workflows/snapshot.yml"
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
aqua:
|
|
name: "aqua"
|
|
if: >
|
|
github.event_name == 'push' ||
|
|
contains(github.event.pull_request.labels.*.name, 'e2e')
|
|
uses: ./.github/workflows/snapshot.yml
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
|
|
fluence-cli-snapshot:
|
|
name: "fluence-cli"
|
|
needs: aqua
|
|
uses: fluencelabs/fluence-cli/.github/workflows/snapshot.yml@main
|
|
with:
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
|
|
|
fluence-cli:
|
|
needs: aqua
|
|
uses: fluencelabs/fluence-cli/.github/workflows/tests.yml@main
|
|
with:
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
|
|
|
registry:
|
|
needs:
|
|
- aqua
|
|
- fluence-cli-snapshot
|
|
uses: fluencelabs/registry/.github/workflows/tests.yml@main
|
|
with:
|
|
aqua-snapshots: "${{ needs.aqua.outputs.aqua-snapshots }}"
|
|
fluence-cli-version: "${{ needs.fluence-cli-snapshot.outputs.version }}"
|