Skip to content

Commit b3db197

Browse files
committed
extend release testing
1 parent 5058411 commit b3db197

11 files changed

+11
-10
lines changed

.drone.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ steps:
4646
trigger:
4747
branch:
4848
- master
49+
- release/*
4950
event:
5051
include:
5152
- push

.github/workflows/ci_dockers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: CI build Docker
44
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
55
on: # Trigger the workflow on push or pull request, but only for the master branch
66
push:
7-
branches: [master]
7+
branches: [master, "release/*"] # include release branches like release/1.0.x
88
pull_request:
99
branches: [master]
1010

.github/workflows/ci_pkg-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Install pkg
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
pull_request:
88
branches: [master]
99

.github/workflows/ci_test-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI base testing
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
pull_request:
88
branches: [master]
99

.github/workflows/ci_test-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: PyTorch & Conda
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
pull_request:
88
branches: [master]
99

.github/workflows/ci_test-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI complete testing
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
pull_request:
88
branches: [master]
99

.github/workflows/ci_test-tpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: TPU tests
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, "release/*"] # include release branches like release/1.0.x
66
# TODO: temporal disable TPU testing until we find way how to pass credentials to forked PRs
77
# pull_request:
88
# branches:

.github/workflows/code-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Check Code Format"
22

33
on: # Trigger the workflow on push or pull request, but only for the master branch
44
push:
5-
branches: [master]
5+
branches: [master, "release/*"] # include release branches like release/1.0.x
66
pull_request:
77
branches: [master]
88

.github/workflows/docker-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish Docker Releases
33
# https://github.com/docker/build-push-action
44
on:
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
release:
88
types: [created]
99

.github/workflows/docs-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Docs check"
33

44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches: [master]
6+
branches: [master, "release/*"] # include release branches like release/1.0.x
77
pull_request:
88
branches: [master]
99

0 commit comments

Comments
 (0)