Skip to content

Commit 20d2832

Browse files
chore: disable nightly builds (#9536)
**Description** This PR: * disables nightly builds * updates the README with new document site URLs **Checklist** - [x] Code compiles correctly and linting passes locally
1 parent 68c24d5 commit 20d2832

File tree

3 files changed

+20
-22
lines changed

3 files changed

+20
-22
lines changed

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

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

1111
jobs:
1212
build:
13+
if: false # Temporarily disabled
1314
runs-on: blacksmith-4vcpu-ubuntu-2404
1415
steps:
1516
- name: Setup Blacksmith Builder

README.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ calls in a cluster.
2222

2323
Dgraph's goal is to provide Google production-level scale and throughput, with low enough latency to
2424
serve real-time user queries over terabytes of structured data. Dgraph supports
25-
[GraphQL query syntax](https://docs.hypermode.com/dgraph/graphql/overview), and responds in
26-
[JSON](http://www.json.org/) and [Protocol Buffers](https://developers.google.com/protocol-buffers/)
27-
over [GRPC](http://www.grpc.io/) and HTTP. Dgraph is written using the Go Programming Language.
25+
[GraphQL query syntax](https://docs.dgraph.io/graphql), and responds in [JSON](http://www.json.org/)
26+
and [Protocol Buffers](https://developers.google.com/protocol-buffers/) over
27+
[GRPC](http://www.grpc.io/) and HTTP. Dgraph is written using the Go Programming Language.
2828

2929
## Status
3030

@@ -37,12 +37,12 @@ it is being used in production at multiple Fortune 500 companies, and by
3737

3838
## Supported Platforms
3939

40-
Dgraph officially supports the Linux/amd64 architecture. Support for Linux/arm64 is in development.
41-
In order to take advantage of memory performance gains and other architecture-specific advancements
42-
in Linux, we dropped official support Mac and Windows in 2021, see
43-
[this blog post](https://discuss.hypermode.com/t/dropping-support-for-windows-and-mac/12913) for
44-
more information. You can still build and use Dgraph on other platforms (for live or bulk loading
45-
for instance), but support for platforms other than Linux/amd64 is not available.
40+
Dgraph officially supports the Linux/amd64 and Linux/arm64 architectures. In order to take advantage
41+
of memory performance gains and other architecture-specific advancements in Linux, we dropped
42+
official support for Mac and Windows in 2021, see
43+
[this blog post](https://discuss.dgraph.io/t/dropping-support-for-windows-and-mac/12913) for more
44+
information. You can still build and use Dgraph on other platforms (for live or bulk loading for
45+
instance), but support for platforms other than Linux/amd64 and Linux/arm64 is not available.
4646

4747
Running Dgraph in a Docker environment is the recommended testing and deployment method.
4848

@@ -56,7 +56,7 @@ docker pull dgraph/dgraph:latest
5656
```
5757

5858
For more information on a variety Docker deployment methods including Docker Compose and Kubernetes,
59-
see the [docs](https://docs.hypermode.com/dgraph/self-managed/overview).
59+
see the [docs](https://docs.dgraph.io/installation/).
6060

6161
## Run a Quick Standalone Cluster
6262

@@ -91,9 +91,9 @@ make install
9191

9292
**To get started with Dgraph, follow:**
9393

94-
- [Installation to queries in 3 steps](https://docs.hypermode.com/dgraph/quickstart).
94+
- [Installation to queries in 4 quick steps](https://docs.dgraph.io/quick-start).
9595
- Tutorial and presentation videos on
96-
[YouTube channel](https://www.youtube.com/channel/UCghE41LR8nkKFlR3IFTRO4w/featured).
96+
[YouTube channel](https://www.youtube.com/playlist?list=PLzOEKEHv-5e3u2Tgv52O2rs5u3md58JON).
9797

9898
## Is Dgraph the right choice for me?
9999

@@ -124,8 +124,7 @@ operations, which makes it easy to build applications with it.
124124

125125
## Users
126126

127-
- **Dgraph official documentation is present at
128-
[docs.hypermode.com/dgraph](https://docs.hypermode.com/dgraph).**
127+
- **Dgraph official documentation is present at [docs.dgraph.io](https://docs.dgraph.io).**
129128
- For general information and questions, visit
130129
[Github discussions](https://github.com/dgraph-io/dgraph/discussions).
131130
- Please see [releases tab](https://github.com/dgraph-io/dgraph/releases) to find the latest release
@@ -139,9 +138,9 @@ for guidelines on contributions.
139138
## Client Libraries
140139

141140
The Dgraph team maintains several
142-
[officially supported client libraries](https://docs.hypermode.com/dgraph/sdks/overview). There are
143-
also libraries contributed by the community
144-
[unofficial client libraries](https://docs.hypermode.com/dgraph/sdks/unofficial-clients#unofficial-dgraph-clients).
141+
[officially supported client libraries](https://docs.dgraph.io/clients/). There are also libraries
142+
contributed by the community
143+
[unofficial client libraries](https://docs.dgraph.io/clients/unofficial-clients).
145144

146145
##
147146

contrib/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
# This file is used to add the nightly Dgraph binaries and assets to Dgraph base
2-
# image.
3-
4-
# This gets built as part of release.sh. Must be run from /tmp/build, with the linux binaries
5-
# already built and placed there.
1+
# This file is used to add the Dgraph binaries and assets to Dgraph images.
2+
# Ensure that the Dgraph binaries are built and placed in the linux
3+
# directory before building this image.
64

75
FROM ubuntu:24.04
86
LABEL maintainer="Istari Digital, Inc. <dgraph-admin@istaridigital.com>"

0 commit comments

Comments
 (0)