Implement scheme for triggering individual CI jobs (#577)
Fixturenet-Eth-Plugeth-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 3s
Details
Fixturenet-Eth-Test / Run an Ethereum fixturenet test (push) Successful in 57m34s
Details
Publish / Build and publish (push) Successful in 1m42s
Details
Deploy Test / Run deploy test suite (push) Successful in 4m57s
Details
Smoke Test / Run basic test suite (push) Successful in 8m14s
Details
Fixturenet-Eth-Plugeth-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 3s
Details
Fixturenet-Eth-Test / Run an Ethereum fixturenet test (push) Successful in 57m34s
Details
Publish / Build and publish (push) Successful in 1m42s
Details
Deploy Test / Run deploy test suite (push) Successful in 4m57s
Details
Smoke Test / Run basic test suite (push) Successful in 8m14s
Details
* Implement scheme for triggering individual CI jobs * Add missing commentpull/578/head v1.1.0-61579f0-202310130240
parent
0bec51e96a
commit
61579f0434
|
|
@ -2,7 +2,10 @@ name: Fixturenet-Eth-Plugeth-Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: 'ci-test'
|
branches: '*'
|
||||||
|
paths:
|
||||||
|
- '!**'
|
||||||
|
- '.gitea/workflows/triggers/fixturenet-eth-plugeth-test'
|
||||||
|
|
||||||
# Needed until we can incorporate docker startup into the executor container
|
# Needed until we can incorporate docker startup into the executor container
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,10 @@ name: Fixturenet-Eth-Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: 'ci-test'
|
branches: '*'
|
||||||
|
paths:
|
||||||
|
- '!**'
|
||||||
|
- '.gitea/workflows/triggers/fixturenet-eth-test'
|
||||||
|
|
||||||
# Needed until we can incorporate docker startup into the executor container
|
# Needed until we can incorporate docker startup into the executor container
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- publish-test
|
- publish-test
|
||||||
|
paths-ignore:
|
||||||
|
- '.gitea/workflows/triggers/*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- ci-test
|
- ci-test
|
||||||
|
paths-ignore:
|
||||||
|
- '.gitea/workflows/triggers/*'
|
||||||
|
|
||||||
# Needed until we can incorporate docker startup into the executor container
|
# Needed until we can incorporate docker startup into the executor container
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- ci-test
|
- ci-test
|
||||||
|
paths-ignore:
|
||||||
|
- '.gitea/workflows/triggers/*'
|
||||||
|
|
||||||
# Needed until we can incorporate docker startup into the executor container
|
# Needed until we can incorporate docker startup into the executor container
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Change this file to trigger running the fixturenet-eth-plugeth-test CI job
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Change this file to trigger running the fixturenet-eth-test CI job
|
||||||
Loading…
Reference in New Issue