Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
casimiro committed Sep 7, 2023
1 parent c45aef5 commit 7942efd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/job-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ jobs:
#if: ${{ false }}
runs-on: ${{ inputs.os }}
steps:
- name: 'Setup deps - apt-get gcc'
if: ${{ !env.ACT && contains(inputs.cc, 'gcc') }}
run: sudo apt-get update && sudo apt-get install -y ${CC} libstdc++-${CC#*-}-dev lcov

- name: 'Setup deps - apt-get clang'
if: ${{ !env.ACT && contains(inputs.cc, 'clang') }}
run: sudo apt-get update && sudo apt-get install -y ${CC} lcov

- uses: actions/checkout@v3
- name: 'Setup cache - work/ dir'
uses: actions/cache@v3
Expand Down

0 comments on commit 7942efd

Please sign in to comment.