mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-04 15:20:16 +00:00
chore: Fix running e2e on merge to master (#656)
* Run e2e on merge to master * Fix * Speedup
This commit is contained in:
parent
f58eca2146
commit
2beac37c73
9
.github/workflows/e2e.yml
vendored
9
.github/workflows/e2e.yml
vendored
@ -42,14 +42,18 @@ jobs:
|
||||
|
||||
air-beautify-wasm:
|
||||
name: "aquavm"
|
||||
if: github.event.pull_request.head.repo.fork != true && contains(github.event.pull_request.labels.*.name, 'e2e')
|
||||
if: >
|
||||
github.event_name == 'push' ||
|
||||
(
|
||||
contains(github.event.pull_request.labels.*.name, 'e2e') &&
|
||||
!github.event.pull_request.head.repo.fork
|
||||
)
|
||||
uses: ./.github/workflows/snapshot-air-beautify-wasm.yml
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
|
||||
avm:
|
||||
name: "aquavm"
|
||||
if: github.event.pull_request.head.repo.fork != true && contains(github.event.pull_request.labels.*.name, 'e2e')
|
||||
needs: air-interpreter-wasm
|
||||
uses: ./.github/workflows/snapshot-avm.yml
|
||||
with:
|
||||
@ -57,7 +61,6 @@ jobs:
|
||||
|
||||
cargo:
|
||||
name: "aquavm"
|
||||
if: github.event.pull_request.head.repo.fork != true && contains(github.event.pull_request.labels.*.name, 'e2e')
|
||||
needs: air-interpreter-wasm
|
||||
uses: ./.github/workflows/snapshot-cargo.yml
|
||||
with:
|
||||
|
@ -15,7 +15,7 @@ on:
|
||||
jobs:
|
||||
wasm:
|
||||
name: "Build air-interpreter-wasm"
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: builder
|
||||
timeout-minutes: 60
|
||||
|
||||
env:
|
||||
|
2
.github/workflows/snapshot-cargo.yml
vendored
2
.github/workflows/snapshot-cargo.yml
vendored
@ -19,7 +19,7 @@ on:
|
||||
jobs:
|
||||
snapshots:
|
||||
name: "Publish crates"
|
||||
runs-on: builder
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
|
||||
env:
|
||||
|
Loading…
Reference in New Issue
Block a user