Skip to content

Commit

Permalink
Fix compiler check in upload, CodeQL name
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 26, 2024
1 parent b492534 commit f61cbde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
if: ${{ matrix.compiler == 'ubuntu-latest' && (matrix.compiler == 'pcc' || matrix.compiler == 'tcc') }}
if: ${{ matrix.compiler == 'ubuntu-latest' && (matrix.compiler == 'gcc' || matrix.compiler == 'clang') }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: C
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:

jobs:
analyze:
name: Analyze (${{ matrix.language }})
name: Analyze (${{ matrix.name }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
Expand Down
2 changes: 1 addition & 1 deletion c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PY?=python3
USER_FLAG?=--user
PIP?=$(PY) -m pip
BLUE=\033[0;34m
NC=\033[0m # No Color
NC=\033[0m # No Color

ifneq ($(https_proxy), )
PROXY_ARG=--proxy=$(https_proxy)
Expand Down

0 comments on commit f61cbde

Please sign in to comment.