From c4ced68344848ce7b1624fbb88fc3939016dd8ab Mon Sep 17 00:00:00 2001 From: Alon Faraj Date: Thu, 31 Aug 2023 12:02:03 +0300 Subject: [PATCH] use gcc-8 --- .github/workflows/code-coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 951fb6c65..d03148ce7 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -14,10 +14,10 @@ jobs: sudo apt-get install build-essential gcc-8 - name: Build - run: make -j LLAMA_CODE_COVERAGE=1 tests + run: CC=gcc-8 make -j LLAMA_CODE_COVERAGE=1 tests - name: Run tests - run: make test + run: CC=gcc-8 make test - name: Generate coverage report run: make coverage