Skip to content

Commit

Permalink
Merge pull request #429 from berty/dev/moul/berty-labs
Browse files Browse the repository at this point in the history
  • Loading branch information
moul authored Feb 3, 2022
2 parents 5a92c9e + aa574f6 commit 0e47e35
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN yarn build

# go build
FROM golang:1.17-alpine as go-build
RUN apk add --update --no-cache git gcc musl-dev make perl-utils
RUN GO111MODULE=off go get github.com/gobuffalo/packr/v2/packr2
RUN apk add --update --no-cache git gcc musl-dev make perl-utils bash
RUN GO111MODULE=on go install github.com/gobuffalo/packr/v2/packr2@v2.8.3
WORKDIR /go/src/berty.tech/yolo
ENV GO111MODULE=on \
GOPROXY=proxy.golang.org
Expand Down
4 changes: 4 additions & 0 deletions go/pkg/yolosvc/driver_github.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ func (worker *githubWorker) fetchBaseObjects(ctx context.Context) (*yolopb.Batch
owner: "berty", repo: "berty",
// workflows: map[int64]githubWorkflowConfig{2598412: githubWorkflowConfig{}},
},
{
owner: "berty", repo: "labs",
// workflows: map[int64]githubWorkflowConfig{2598412: githubWorkflowConfig{}},
},
}
}

Expand Down
3 changes: 3 additions & 0 deletions web/src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,17 @@ export const ARTIFACT_KINDS = Object.values(ARTIFACT_KIND_VALUE).map((kind) =>

export const PROJECT = {
messenger: "https://github.com/berty/berty",
labs: "https://github.com/berty/labs",
};

export const PROJECT_ID_TO_NAME = {
"https://github.com/berty/berty": "messenger",
"https://github.com/berty/labs": "labs",
};

export const PROJECT_NAMES = {
messenger: "messenger",
labs: "labs",
};

export const PROJECTS = Object.values(PROJECT);
Expand Down

0 comments on commit 0e47e35

Please sign in to comment.