diff --git a/ci/build/Dockerfile b/ci/build/Dockerfile index d6ffd07..71aca15 100644 --- a/ci/build/Dockerfile +++ b/ci/build/Dockerfile @@ -2,4 +2,4 @@ FROM base RUN apt-get update && apt-get install -y make git gcc -CMD bash -c "cd /how2heap && make && cp $(which make) /how2heap/make" +CMD bash -c "cd /how2heap && make all && cp $(which make) /how2heap/make" diff --git a/ci/test/action.yml b/ci/test/action.yml index ecc0b3c..9e1c8e7 100644 --- a/ci/test/action.yml +++ b/ci/test/action.yml @@ -18,5 +18,5 @@ runs: - name: test how2heap inside the raw container run: | - docker run -v /tmp/how2heap:/how2heap ubuntu_test bash -c 'cd /how2heap; CC=gcc ./make test version=${{ inputs.glibc }}' + docker run -v /tmp/how2heap:/how2heap ubuntu_test bash -c 'cd /how2heap; ./make test version=${{ inputs.glibc }}' shell: bash