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

Disable memory checking on dist'd builds #15

Merged
merged 5 commits into from
Sep 8, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- run: apt-get install -y openjdk-8-jdk-headless ant build-essential cmake python git
- checkout
- run: ant clean
- run: ant dist
- run: ant -Djmemcheck=NO_MEMCHECK dist
- run: cp obj/release/voltdb-community-*.tar.gz obj/release/mode-voltdb-community.tar.gz
- store_artifacts:
path: obj/release/mode-voltdb-community.tar.gz
Expand Down Expand Up @@ -98,7 +98,7 @@ commands:
apt-key fingerprint 0EBFCD88
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get update
apt-get install docker-ce-cli
apt-get install -y docker-ce-cli
- checkout
- setup_remote_docker:
docker_layer_caching: true
Expand Down
2 changes: 1 addition & 1 deletion .circleci/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ WORKDIR /opt/voltdb
COPY . .

RUN ant clean
RUN ant dist | ts '[%Y-%m-%d %H:%M:%S]'
RUN ant -Djmemcheck=NO_MEMCHECK dist | ts '[%Y-%m-%d %H:%M:%S]'
RUN cp obj/release/voltdb-community-*.tar.gz obj/release/voltdb-community.tar.gz


Expand Down