From a42f22c8a349071a9162300cc27216e01e6e2065 Mon Sep 17 00:00:00 2001 From: Kyle Zeng Date: Tue, 30 Apr 2024 14:02:02 -0700 Subject: [PATCH] specify CC in CI --- ci/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test/action.yml b/ci/test/action.yml index 9e1c8e7..ecc0b3c 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; ./make test version=${{ inputs.glibc }}' + docker run -v /tmp/how2heap:/how2heap ubuntu_test bash -c 'cd /how2heap; CC=gcc ./make test version=${{ inputs.glibc }}' shell: bash