From a5e2aa33f7226558ac33278f03f404b2dd51d338 Mon Sep 17 00:00:00 2001 From: Alon Faraj Date: Thu, 31 Aug 2023 12:11:15 +0300 Subject: [PATCH] check why the job hang --- .github/workflows/code-coverage.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index d03148ce7..687b26534 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -1,4 +1,4 @@ -name: Code coverage +name: Code Coverage on: [push, pull_request] jobs: run: @@ -8,13 +8,12 @@ jobs: uses: actions/checkout@v3 - name: Dependencies - id: depends run: | sudo apt-get update sudo apt-get install build-essential gcc-8 - name: Build - run: CC=gcc-8 make -j LLAMA_CODE_COVERAGE=1 tests + run: CC=gcc-8 make -j tests - name: Run tests run: CC=gcc-8 make test