Skip to content

Commit 037faa1

Browse files
Merge branch 'main' into harshil-goel/split-vector3
2 parents f2cade4 + bfe6f0c commit 037faa1

111 files changed

Lines changed: 2310 additions & 2892 deletions

File tree

Some content is hidden

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

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Please explain the changes you made here.
88
- [ ] For all _code_ changes, an entry added to the `CHANGELOG.md` file describing and linking to
99
this PR
1010
- [ ] Tests added for new functionality, or regression tests for bug fixes added as applicable
11-
- [ ] For public APIs, new features, etc., PR on
12-
[docs repo](https://github.com/hypermodeinc/docs) staged and linked here
11+
- [ ] For public APIs, new features, etc., PR on [docs repo](https://github.com/dgraph-io/docs)
12+
staged and linked here
1313

1414
**Instructions**
1515

.github/actionlint.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/cd-dgraph-nightly.yml

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

1111
jobs:
1212
build:
13-
runs-on: warp-ubuntu-latest-x64-4x
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: docker/[email protected]
1616

.github/workflows/cd-dgraph.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ permissions:
2121

2222
jobs:
2323
dgraph-build-amd64:
24-
runs-on: warp-ubuntu-latest-x64-4x
24+
runs-on: ubuntu-latest
2525
timeout-minutes: 15
2626
steps:
2727
- uses: actions/checkout@v5
2828
with:
2929
ref: "${{ github.event.inputs.releasetag }}"
3030
- name: Set up Go
31-
uses: actions/setup-go@v5
31+
uses: actions/setup-go@v6
3232
with:
3333
go-version-file: go.mod
3434
- name: Install protobuf-compiler
@@ -121,14 +121,14 @@ jobs:
121121
path: dgraph-standalone-amd64.tar
122122

123123
dgraph-build-arm64:
124-
runs-on: warp-ubuntu-latest-arm64-4x
124+
runs-on: blacksmith-4vcpu-ubuntu-2404-arm
125125
timeout-minutes: 15
126126
steps:
127127
- uses: actions/checkout@v5
128128
with:
129129
ref: "${{ github.event.inputs.releasetag }}"
130130
- name: Set up Go
131-
uses: actions/setup-go@v5
131+
uses: actions/setup-go@v6
132132
with:
133133
go-version-file: go.mod
134134
- name: Install protobuf-compiler
@@ -222,7 +222,7 @@ jobs:
222222

223223
graph-docker-image-and-manifests-push:
224224
needs: [dgraph-build-amd64, dgraph-build-arm64]
225-
runs-on: warp-ubuntu-latest-x64-4x
225+
runs-on: ubuntu-latest
226226
timeout-minutes: 15
227227
steps:
228228
- uses: actions/checkout@v5

.github/workflows/ci-dgraph-core-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: ci-dgraph-core-tests
33
on:
44
pull_request:
55
paths:
6+
- "!**/*.md"
67
- "**/*.go"
78
- "**/go.mod"
89
- "**/*.yml"
@@ -25,12 +26,12 @@ permissions:
2526
jobs:
2627
dgraph-core-tests:
2728
if: github.event.pull_request.draft == false
28-
runs-on: warp-ubuntu-latest-x64-16x
29+
runs-on: ubuntu-latest
2930
timeout-minutes: 60
3031
steps:
3132
- uses: actions/checkout@v5
3233
- name: Set up Go
33-
uses: actions/setup-go@v5
34+
uses: actions/setup-go@v6
3435
with:
3536
go-version-file: go.mod
3637
- name: Install protobuf-compiler

.github/workflows/ci-dgraph-core-upgrade-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: ci-dgraph-core-upgrade-tests
33
on:
44
pull_request:
55
paths:
6+
- "!**/*.md"
67
- "**/*.go"
78
- "**/go.mod"
89
- "**/*.yml"
@@ -23,14 +24,14 @@ permissions:
2324
jobs:
2425
dgraph-upgrade-tests:
2526
if: github.event.pull_request.draft == false
26-
runs-on: warp-ubuntu-latest-x64-4x
27+
runs-on: ubuntu-latest
2728
timeout-minutes: 60
2829
steps:
2930
- uses: actions/checkout@v5
3031
with:
3132
fetch-depth: 0
3233
- name: Set up Go
33-
uses: actions/setup-go@v5
34+
uses: actions/setup-go@v6
3435
with:
3536
go-version-file: go.mod
3637
- name: Make Linux Build and Docker Image

.github/workflows/ci-dgraph-fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ permissions:
2323
jobs:
2424
fuzz-test:
2525
if: github.event.pull_request.draft == false
26-
runs-on: warp-ubuntu-latest-x64-4x
26+
runs-on: ubuntu-latest
2727
timeout-minutes: 10
2828
steps:
2929
- uses: actions/checkout@v5
3030
- name: Set up Go
31-
uses: actions/setup-go@v5
31+
uses: actions/setup-go@v6
3232
with:
3333
go-version-file: go.mod
3434
- name: Run fuzz tests

.github/workflows/ci-dgraph-integration2-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: ci-dgraph-integration2-tests
33
on:
44
pull_request:
55
paths:
6+
- "!**/*.md"
67
- "**/*.go"
78
- "**/go.mod"
89
- "**/*.yml"
@@ -23,14 +24,14 @@ permissions:
2324
jobs:
2425
dgraph-integration2-tests:
2526
if: github.event.pull_request.draft == false
26-
runs-on: warp-ubuntu-latest-x64-4x
27-
timeout-minutes: 30
27+
runs-on: ubuntu-latest
28+
timeout-minutes: 90
2829
steps:
2930
- uses: actions/checkout@v5
3031
with:
3132
fetch-depth: 0
3233
- name: Set up Go
33-
uses: actions/setup-go@v5
34+
uses: actions/setup-go@v6
3435
with:
3536
go-version-file: go.mod
3637
- name: Make Linux Build and Docker Image
@@ -48,7 +49,7 @@ jobs:
4849
# move the binary
4950
cp dgraph/dgraph ~/go/bin/dgraph
5051
# run the tests
51-
go test -v -timeout=30m -failfast -tags=integration2 ./...
52+
go test -v -timeout=90m -failfast -tags=integration2 ./...
5253
# clean up docker containers after test execution
5354
go clean -testcache
5455
# sleep

.github/workflows/ci-dgraph-jepsen-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
dgraph-jepsen-tests:
15-
runs-on: warp-ubuntu-latest-x64-4x
15+
runs-on: ubuntu-latest
1616
timeout-minutes: 60
1717
steps:
1818
- name: Checkout dgraph repo
@@ -30,7 +30,7 @@ jobs:
3030
JEPSEN_ROOT=$(pwd)
3131
echo "JEPSEN_ROOT=$JEPSEN_ROOT" >> $GITHUB_ENV
3232
- name: Set up Go
33-
uses: actions/setup-go@v5
33+
uses: actions/setup-go@v6
3434
with:
3535
go-version-file: go.mod
3636
- name: Make dgraph linux build

.github/workflows/ci-dgraph-ldbc-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: ci-dgraph-ldbc-tests
33
on:
44
pull_request:
55
paths:
6+
- "!**/*.md"
67
- "**/*.go"
78
- "**/go.mod"
89
- "**/*.yml"
@@ -23,13 +24,13 @@ permissions:
2324
jobs:
2425
dgraph-ldbc-tests:
2526
if: github.event.pull_request.draft == false
26-
runs-on: warp-ubuntu-latest-x64-4x
27+
runs-on: ubuntu-latest
2728
timeout-minutes: 10
2829
steps:
2930
- name: Checkout Dgraph
3031
uses: actions/checkout@v5
3132
- name: Set up Go
32-
uses: actions/setup-go@v5
33+
uses: actions/setup-go@v6
3334
with:
3435
go-version-file: go.mod
3536
- name: Make Linux Build and Docker Image

0 commit comments

Comments
 (0)