Skip to content

Commit

Permalink
Revert "Cancel previous GitHub Action workflows on same branch with n…
Browse files Browse the repository at this point in the history
…ew commits (babelfish-for-postgresql#667)" (babelfish-for-postgresql#738)

Revert GitHub Actions Cancellation using Concurrency due to tests being cancelled in the main branch
This reverts commit 18eabd0.

Signed-off-by: Colin Yuen yuenhcol@amazon.com
  • Loading branch information
ColinKYuen authored Oct 26, 2022
1 parent 621d16f commit 7997902
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 75 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/dotnet-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Dotnet Framework Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-dotnet-tests:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/isolation-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
name: Babelfish Smoke Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
branches:
pull_request:
branches:

jobs:
isolation-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/jdbc-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: JDBC Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-jdbc-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/major-version-upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Major Version Upgrade Tests for empty database
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-mvu-tests:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/minor-version-upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Minor Version Upgrade Tests for empty database
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
extension-tests:
env:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/odbc-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: ODBC Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-odbc-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/pg-hint-plan-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: pg-hint-plan Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-pg-hint-plan-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Python Tests
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-python-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/singledb-version-upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Major Version Upgrade Tests for singledb mode
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-babelfish-mvu-tests-singledb:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/sql-validation-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Validate Installation/Upgrade Scripts
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
run-sql-validation-tests:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/upgrade-test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Version Upgrade Test Framework
on:
pull_request:
push:
branches: [ 'BABEL_*' ]
concurrency: # Cancel previous runs in the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]

jobs:
generate-version-upgrade-tests:
Expand Down

0 comments on commit 7997902

Please sign in to comment.