Skip to content

Commit

Permalink
use release mode in Dockerfile and do not use gcc12 RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiBoether committed Oct 18, 2023
1 parent 0b31c57 commit 6f6750c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ jobs:
compiler:
- { c: gcc, cxx: g++, version: 11 }
- { c: gcc, cxx: g++, version: 12 }
- { c: gcc, cxx: g++, version: 13 }
- { c: clang, cxx: clang++, version: 14 }
- { c: clang, cxx: clang++, version: 16, coverage: true }
include:
Expand All @@ -167,6 +166,11 @@ jobs:
build-type: Tsan
- compiler: {c: clang, cxx: clang++, version: 14}
build-type: Asan
exclude:
# gcc-12 causes a false-positive memory error in release (https://github.com/google/googletest/issues/4108)
- os: { c: gcc, cxx: g++, version: 12 }
build-type: Release

env:
CC: ${{matrix.compiler.c}}-${{matrix.compiler.version}}
CXX: ${{matrix.compiler.cxx}}-${{matrix.compiler.version}}
Expand Down
2 changes: 1 addition & 1 deletion docker/Storage/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN cmake --version

RUN mkdir -p ./modyn/storage/build \
&& cd ./modyn/storage/build \
&& cmake .. \
&& cmake .. -DCMAKE_BUILD_TYPE=Release \
&& make -j8

# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
Expand Down

0 comments on commit 6f6750c

Please sign in to comment.