Skip to content

Commit 0ed5416

Browse files
authored
Merge branch 'master' into drogus/metrics-for-errors-and-panics
2 parents 6157a5f + 3ea5fde commit 0ed5416

File tree

190 files changed

+9945
-2131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+9945
-2131
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
name: CI
1515

1616
concurrency:
17-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.inputs.pr_number || format('sha-%s', github.sha) }}
17+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.inputs.pr_number || format('sha-{0}', github.sha) }}
1818
cancel-in-progress: true
1919

2020
jobs:
@@ -86,7 +86,7 @@ jobs:
8686
run: python -m pip install psycopg2-binary xmltodict
8787
- name: Run smoketests
8888
# Note: clear_database and replication only work in private
89-
run: python -m smoketests ${{ matrix.smoketest_args }} -x clear_database replication
89+
run: python -m smoketests ${{ matrix.smoketest_args }} -x clear_database replication teams
9090
- name: Stop containers (Linux)
9191
if: always() && runner.os == 'Linux'
9292
run: docker compose down
@@ -140,6 +140,9 @@ jobs:
140140
#Note: Unreal tests will be run separately
141141
run: cargo test --all -- --skip unreal
142142

143+
- name: Run fallocate tests
144+
run: cargo test -p spacetimedb-durability --features fallocate
145+
143146
- name: Check that the test outputs are up-to-date
144147
run: bash tools/check-diff.sh
145148

.github/workflows/csharp-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
concurrency:
10-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-%s', github.sha) }}
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-{0}', github.sha) }}
1111
cancel-in-progress: true
1212

1313
jobs:

.github/workflows/internal-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111

1212
concurrency:
13-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-%s', github.sha) }}
13+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-{0}', github.sha) }}
1414
cancel-in-progress: true
1515

1616
jobs:

.github/workflows/typescript-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
merge_group:
99

1010
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-%s', github.sha) }}
11+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || format('sha-{0}', github.sha) }}
1212
cancel-in-progress: true
1313

1414
jobs:

0 commit comments

Comments
 (0)