Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cpp-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
actions: read
checks: write
pull-requests: write
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
Expand Down Expand Up @@ -80,9 +83,6 @@ jobs:
WITNESS_REGION: us-west-2
run: |
./example
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
actions: read
checks: write
pull-requests: write
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}
env:
GOPROXY: direct

Expand Down Expand Up @@ -88,9 +91,6 @@ jobs:
working-directory: ./go/cluster_management/cmd/delete_multi_region
run: |
go test
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/java-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
actions: read
checks: write
pull-requests: write
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
Expand All @@ -59,9 +62,6 @@ jobs:
mvn initialize
mvn clean compile assembly:single
mvn test
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/javascript-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
actions: read
checks: write
pull-requests: write
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
Expand All @@ -54,9 +57,6 @@ jobs:
run: |
npm install
npm test
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
actions: read
checks: write
pull-requests: write

concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -67,9 +70,6 @@ jobs:
pip list
echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH
pytest -v test/
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ruby-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
actions: read
checks: write
pull-requests: write

concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -53,9 +56,6 @@ jobs:
run: |
bundle install
rspec
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ jobs:
actions: read
checks: write
pull-requests: write

concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -67,9 +70,6 @@ jobs:
working-directory: ./rust/cluster_management
run: |
cargo test -- --nocapture
concurrency:
# Ensure only 1 job mutates clusters in this account at a time.
group: ${{ github.workflow }}

cleanup:
if: always()
Expand Down
Loading