Skip to content

Commit

Permalink
Implement scheme for triggering individual CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dboreham committed Oct 13, 2023
1 parent 0bec51e commit aa36c6f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitea/workflows/fixturenet-eth-plugeth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: Fixturenet-Eth-Plugeth-Test

on:
push:
branches: 'ci-test'
branches: '*'
paths:
- '!**'
- '.gitea/workflows/triggers/fixturenet-eth-plugeth-test'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
5 changes: 4 additions & 1 deletion .gitea/workflows/fixturenet-eth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: Fixturenet-Eth-Test

on:
push:
branches: 'ci-test'
branches: '*'
paths:
- '!**'
- '.gitea/workflows/triggers/fixturenet-eth-test'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
- publish-test
paths-ignore:
- '.gitea/workflows/triggers/*'

jobs:
publish:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- main
- ci-test
paths-ignore:
- '.gitea/workflows/triggers/*'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- main
- ci-test
paths-ignore:
- '.gitea/workflows/triggers/*'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
Empty file.
1 change: 1 addition & 0 deletions .gitea/workflows/triggers/fixturenet-eth-test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change this file to trigger running the fixturenet-eth-test CI job

0 comments on commit aa36c6f

Please sign in to comment.