Skip to content

Commit

Permalink
clean go cache before building dgraph binary
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaji-dgraph committed Apr 29, 2024
1 parent b95c890 commit 82193f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci-dgraph-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ jobs:
make regenerate
git diff --exit-code -- .
- name: Make Linux Build and Docker Image
run: make docker-image
run: |
#!/bin/bash
go clean -cache
make docker-image
- name: Build Test Binary
run: |
#!/bin/bash
Expand Down
4 changes: 2 additions & 2 deletions query/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,8 @@ func populateCluster(dc dgraphapi.Cluster) {
<25> <film.film.initial_release_date> "1929-01-10" .
<31> <film.film.initial_release_date> "1801-01-15" .
<0x10000> <royal_title> "Her Majesty Elizabeth the Second, by the Grace of God of the United Kingdom of Great Britain and Northern Ireland and of Her other Realms and Territories Queen, Head of the dgraphapiwealth, Defender of the Faith"@en .
<0x10000> <royal_title> "Sa Majesté Elizabeth Deux, par la grâce de Dieu Reine du Royaume-Uni, du Canada et de ses autres royaumes et territoires, Chef du dgraphapiwealth, Défenseur de la Foi"@fr .
<0x10000> <royal_title> "Her Majesty Elizabeth the Second, by the Grace of God of the United Kingdom of Great Britain and Northern Ireland and of Her other Realms and Territories Queen, Head of the Commonwealth, Defender of the Faith"@en .
<0x10000> <royal_title> "Sa Majesté Elizabeth Deux, par la grâce de Dieu Reine du Royaume-Uni, du Canada et de ses autres royaumes et territoires, Chef du Commonwealth, Défenseur de la Foi"@fr .
<32> <school> <33> .
<33> <district> <34> .
Expand Down
12 changes: 6 additions & 6 deletions systest/integration2/graphql_schema_auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -715,9 +715,9 @@ func TestGraphqlSchema(t *testing.T) {
"""
newPlaces: [Place]
"""
Undgraphapi visited places. A place is undgraphapi if not visited for more than three times prior to the summary date.
Uncommon visited places. A place is Uncommon if not visited for more than three times prior to the summary date.
"""
undgraphapiPlaces: [Place]
UncommonPlaces: [Place]
"""
The total number of places visited in the day.
"""
Expand All @@ -727,9 +727,9 @@ func TestGraphqlSchema(t *testing.T) {
"""
newPlaceCount: Int
"""
The number of undgraphapi places visited in the day.
The number of Uncommon places visited in the day.
"""
undgraphapiPlaceCount: Int
UncommonPlaceCount: Int
"""
Cummulative time (in seconds) stationary.
"""
Expand All @@ -739,9 +739,9 @@ func TestGraphqlSchema(t *testing.T) {
"""
durationInNewPlaces: Int
"""
Cummulative time (in seconds) spent in undgraphapi places within the day.
Cummulative time (in seconds) spent in Uncommon places within the day.
"""
durationInUndgraphapiPlaces: Int
durationInUncommonPlaces: Int
"""
Cummulative time (in seconds) moving.
"""
Expand Down

0 comments on commit 82193f7

Please sign in to comment.