diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 34ecd7f9..c582a200 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,14 +19,14 @@ jobs: matrix: profile: - debug - #- release + - release include: - #- profile: release - #cargo_flags: "--release" - #cargo_env: "" + - profile: release + cargo_flags: "--release" + cargo_env: "" - profile: debug cargo_flags: "" - #cargo_env: "RUSTFLAGS='-C debuginfo=0'" + cargo_env: "RUSTFLAGS='-C debuginfo=0'" steps: - uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 20fca6b1..7f69ab73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,10 @@ FROM debian:bookworm-slim -RUN apt-get -y update && apt-get -y install ca-certificates gdb heaptrack && rm -rf /var/lib/apt/lists/* +RUN apt-get -y update && apt-get -y install ca-certificates \ + && rm -rf /var/lib/apt/lists/* + # gdb heaptrack \ COPY ./robbb /usr/local/bin/robbb RUN chmod +x /usr/local/bin/robbb -CMD ["heaptrack", "robbb"] +CMD ["robbb"]