Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the manual packaging process #1231

Merged
merged 2 commits into from Mar 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -37,6 +37,7 @@ and yarn are now dependencies for building the backend.
- Stopped double-writing events in eventd
- Agents from different orgs/envs with the same ID connected to the same backend
no longer overwrite each other's messagebus subscriptions.
- Fix the manual packaging process.

### Added
- Support for managing mutators via sensuctl.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.packaging
Expand Up @@ -6,7 +6,7 @@ ENV PATH="${GOROOT}/bin:${GOPATH}/bin:${PATH}"

RUN apt-get update && \
apt-get install -y ruby ruby-dev build-essential rpm rpmlint wget git curl && \
curl -sL https://deb.nodesource.com/setup_6.x | bash - && \
curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get install -y nodejs && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -160,7 +160,7 @@ build_agent:
GOOS=$(GOOS) GOARCH=$(GOARCH) ./build.sh build_agent

build_backend:
GOOS=linux GOARCH=amd64 ./build.sh build_dashboard
GOOS=linux GOARCH=amd64 ./build.sh dashboard
GOOS=$(GOOS) GOARCH=$(GOARCH) ./build.sh build_backend

build_cli:
Expand Down