Skip to content

fix(env, log)!: RUST_LOG and other envs parsing #3001

fix(env, log)!: RUST_LOG and other envs parsing

fix(env, log)!: RUST_LOG and other envs parsing #3001

Workflow file for this run

name: "e2e"
on:
pull_request:
paths-ignore:
- "**.md"
- ".github/**"
- "!.github/workflows/e2e.yml"
- "!.github/workflows/snapshot.yml"
- "!.github/workflows/container.yml"
- "!.github/workflows/build.yml"
types:
- "labeled"
- "synchronize"
- "opened"
- "reopened"
push:
branches:
- "master"
paths-ignore:
- "**.md"
- ".github/**"
- "!.github/workflows/e2e.yml"
- "!.github/workflows/snapshot.yml"
- "!.github/workflows/container.yml"
- "!.github/workflows/build.yml"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
nox:
if: >
github.event_name == 'push' ||
(
contains(github.event.pull_request.labels.*.name, 'e2e') &&
!github.event.pull_request.head.repo.fork
)
uses: ./.github/workflows/build.yml
with:
ref: ${{ github.ref }}
nox-flavours:
name: "nox"
needs: nox
strategy:
matrix:
flavour:
- ipfs
- rich
uses: ./.github/workflows/container.yml
with:
image-name: "docker.fluence.dev/nox"
flavour: "${{ matrix.flavour }}"
nox-snapshot:
name: "nox"
needs: nox
uses: ./.github/workflows/container.yml
with:
image-name: "docker.fluence.dev/nox"
flavour: "minimal"
js-client:
needs:
- nox-snapshot
uses: fluencelabs/js-client/.github/workflows/tests.yml@master
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"
aqua:
needs:
- nox-snapshot
uses: fluencelabs/aqua/.github/workflows/tests.yml@main
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"
registry:
needs:
- nox-snapshot
uses: fluencelabs/registry/.github/workflows/tests.yml@main
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"
flox:
needs:
- nox-snapshot
uses: fluencelabs/flox/.github/workflows/tests.yml@main
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"